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