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