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