ASCII 72
Latin Capital Letter H (H)
Printable ASCII
Uppercase letter H.
All encodings at a glance
| Decimal | 72 |
| Hexadecimal | 0x48 |
| Octal | 0110 |
| Binary | 01001000 |
| HTML numeric entity | H |
| URL encoding | %48 |
| UTF-8 bytes | 0x48 |
Code snippets
JavaScript
String.fromCharCode(72); // "H"
72.toString(16); // "48"Python
chr(72) # 'H'
ord(chr(72)) # 72
hex(72) # '0x48'HTML
H <!-- numeric entity (no named entity for this character) -->