DevKits

ASCII 54

Digit 6 (6)

Printable ASCII

The digit six.

All encodings at a glance

Decimal54
Hexadecimal0x36
Octal0066
Binary00110110
HTML numeric entity6
URL encoding%36
UTF-8 bytes0x36

Code snippets

JavaScript

String.fromCharCode(54); // "6"
54.toString(16); // "36"

Python

chr(54)           # '6'
ord(chr(54))      # 54
hex(54)           # '0x36'

HTML

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

Nearby codes