ASCII 100
Latin Small Letter D (d)
Printable ASCII
Lowercase letter d.
All encodings at a glance
| Decimal | 100 |
| Hexadecimal | 0x64 |
| Octal | 0144 |
| Binary | 01100100 |
| HTML numeric entity | d |
| URL encoding | %64 |
| UTF-8 bytes | 0x64 |
Code snippets
JavaScript
String.fromCharCode(100); // "d"
100.toString(16); // "64"Python
chr(100) # 'd'
ord(chr(100)) # 100
hex(100) # '0x64'HTML
d <!-- numeric entity (no named entity for this character) -->