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