ASCII 89
Latin Capital Letter Y (Y)
Printable ASCII
Uppercase letter Y.
All encodings at a glance
| Decimal | 89 |
| Hexadecimal | 0x59 |
| Octal | 0131 |
| Binary | 01011001 |
| HTML numeric entity | Y |
| URL encoding | %59 |
| UTF-8 bytes | 0x59 |
Code snippets
JavaScript
String.fromCharCode(89); // "Y"
89.toString(16); // "59"Python
chr(89) # 'Y'
ord(chr(89)) # 89
hex(89) # '0x59'HTML
Y <!-- numeric entity (no named entity for this character) -->