DevKits

ASCII 88

Latin Capital Letter X (X)

Printable ASCII

Uppercase letter X.

All encodings at a glance

Decimal88
Hexadecimal0x58
Octal0130
Binary01011000
HTML numeric entityX
URL encoding%58
UTF-8 bytes0x58

Code snippets

JavaScript

String.fromCharCode(88); // "X"
88.toString(16); // "58"

Python

chr(88)           # 'X'
ord(chr(88))      # 88
hex(88)           # '0x58'

HTML

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

Nearby codes