d

ASCII Character: Lowercase d

ASCII Code 100 · Unicode U+0064 · Hex 0x64

d lowercase-d

About the Lowercase d Character

ASCII code 100 (0x64) represents the Lowercase d character "d". The lowercase letter "d" has ASCII code 100. Lowercase letters a–z span codes 97–122. Subtracting 32 from a lowercase letter’s ASCII code gives the corresponding uppercase letter (e.g., 'a' at 97 - 32 = 'A' at 65). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 100
Hexadecimal 0x64
Octal 144
Binary 01100100
Unicode U+0064
Unicode Name LATIN SMALL LETTER D
HTML Numeric d
HTML Entity
URL Escape %64
UTF-8 (Hex) 64
Quoted-Printable d

Source Code Examples

JavaScript
// Character literal
let char = 'd';
// Using char code
let char2 = String.fromCharCode(100);
// Unicode escape
let char3 = '\x64';
Python
# Character literal
char = 'd'
# Using chr()
char = chr(100)
# Using ord() to get code
code = ord('d')  # Returns 100
HTML
<!-- Direct character -->
d
<!-- HTML entity (numeric) -->
&#100;
<!-- Hex entity -->
&#x64;
C#
// Character literal
char c = 'd';
// Using cast
char c2 = (char)100;
// To get code from char
int code = (int)'d';  // Returns 100

Navigate

Copied!