ASCII 90
Latin Capital Letter Z (Z)
Printable ASCII
Uppercase letter Z.
All encodings at a glance
| Decimal | 90 |
| Hexadecimal | 0x5A |
| Octal | 0132 |
| Binary | 01011010 |
| HTML numeric entity | Z |
| URL encoding | %5A |
| UTF-8 bytes | 0x5A |
Code snippets
JavaScript
String.fromCharCode(90); // "Z"
90.toString(16); // "5a"Python
chr(90) # 'Z'
ord(chr(90)) # 90
hex(90) # '0x5a'HTML
Z <!-- numeric entity (no named entity for this character) -->