DevKits

ASCII 68

Latin Capital Letter D (D)

Printable ASCII

Uppercase letter D.

All encodings at a glance

Decimal68
Hexadecimal0x44
Octal0104
Binary01000100
HTML numeric entityD
URL encoding%44
UTF-8 bytes0x44

Code snippets

JavaScript

String.fromCharCode(68); // "D"
68.toString(16); // "44"

Python

chr(68)           # 'D'
ord(chr(68))      # 68
hex(68)           # '0x44'

HTML

&#68;   <!-- numeric entity (no named entity for this character) -->

Nearby codes