ASCII 121
Latin Small Letter Y (y)
Printable ASCII
Lowercase letter y.
All encodings at a glance
| Decimal | 121 |
| Hexadecimal | 0x79 |
| Octal | 0171 |
| Binary | 01111001 |
| HTML numeric entity | y |
| URL encoding | %79 |
| UTF-8 bytes | 0x79 |
Code snippets
JavaScript
String.fromCharCode(121); // "y"
121.toString(16); // "79"Python
chr(121) # 'y'
ord(chr(121)) # 121
hex(121) # '0x79'HTML
y <!-- numeric entity (no named entity for this character) -->