DevKits

ASCII 120

Latin Small Letter X (x)

Printable ASCII

Lowercase letter x.

All encodings at a glance

Decimal120
Hexadecimal0x78
Octal0170
Binary01111000
HTML numeric entityx
URL encoding%78
UTF-8 bytes0x78

Code snippets

JavaScript

String.fromCharCode(120); // "x"
120.toString(16); // "78"

Python

chr(120)           # 'x'
ord(chr(120))      # 120
hex(120)           # '0x78'

HTML

&#120;   <!-- numeric entity (no named entity for this character) -->

Nearby codes