ASCII 104
Latin Small Letter H (h)
Printable ASCII
Lowercase letter h.
All encodings at a glance
| Decimal | 104 |
| Hexadecimal | 0x68 |
| Octal | 0150 |
| Binary | 01101000 |
| HTML numeric entity | h |
| URL encoding | %68 |
| UTF-8 bytes | 0x68 |
Code snippets
JavaScript
String.fromCharCode(104); // "h"
104.toString(16); // "68"Python
chr(104) # 'h'
ord(chr(104)) # 104
hex(104) # '0x68'HTML
h <!-- numeric entity (no named entity for this character) -->