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