ASCII 105
Latin Small Letter I (i)
Printable ASCII
Lowercase letter i.
All encodings at a glance
| Decimal | 105 |
| Hexadecimal | 0x69 |
| Octal | 0151 |
| Binary | 01101001 |
| HTML numeric entity | i |
| URL encoding | %69 |
| UTF-8 bytes | 0x69 |
Code snippets
JavaScript
String.fromCharCode(105); // "i"
105.toString(16); // "69"Python
chr(105) # 'i'
ord(chr(105)) # 105
hex(105) # '0x69'HTML
i <!-- numeric entity (no named entity for this character) -->