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