ASCII 54
Digit 6 (6)
Printable ASCII
The digit six.
All encodings at a glance
| Decimal | 54 |
| Hexadecimal | 0x36 |
| Octal | 0066 |
| Binary | 00110110 |
| HTML numeric entity | 6 |
| URL encoding | %36 |
| UTF-8 bytes | 0x36 |
Code snippets
JavaScript
String.fromCharCode(54); // "6"
54.toString(16); // "36"Python
chr(54) # '6'
ord(chr(54)) # 54
hex(54) # '0x36'HTML
6 <!-- numeric entity (no named entity for this character) -->