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