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