ASCII 120
Latin Small Letter X (x)
Printable ASCII
Lowercase letter x.
All encodings at a glance
| Decimal | 120 |
| Hexadecimal | 0x78 |
| Octal | 0170 |
| Binary | 01111000 |
| HTML numeric entity | x |
| URL encoding | %78 |
| UTF-8 bytes | 0x78 |
Code snippets
JavaScript
String.fromCharCode(120); // "x"
120.toString(16); // "78"Python
chr(120) # 'x'
ord(chr(120)) # 120
hex(120) # '0x78'HTML
x <!-- numeric entity (no named entity for this character) -->