ASCII 122
Latin Small Letter Z (z)
Printable ASCII
Lowercase letter z.
All encodings at a glance
| Decimal | 122 |
| Hexadecimal | 0x7A |
| Octal | 0172 |
| Binary | 01111010 |
| HTML numeric entity | z |
| URL encoding | %7A |
| UTF-8 bytes | 0x7A |
Code snippets
JavaScript
String.fromCharCode(122); // "z"
122.toString(16); // "7a"Python
chr(122) # 'z'
ord(chr(122)) # 122
hex(122) # '0x7a'HTML
z <!-- numeric entity (no named entity for this character) -->