ASCII 117
Latin Small Letter U (u)
Printable ASCII
Lowercase letter u.
All encodings at a glance
| Decimal | 117 |
| Hexadecimal | 0x75 |
| Octal | 0165 |
| Binary | 01110101 |
| HTML numeric entity | u |
| URL encoding | %75 |
| UTF-8 bytes | 0x75 |
Code snippets
JavaScript
String.fromCharCode(117); // "u"
117.toString(16); // "75"Python
chr(117) # 'u'
ord(chr(117)) # 117
hex(117) # '0x75'HTML
u <!-- numeric entity (no named entity for this character) -->