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