d
Lowercase d
Decimal: 100
Hex: 64
Lowercase
ASCII Values
Decimal
100
Hexadecimal
0x64
Character
d
Usage Examples
JavaScript (from decimal)
String.fromCharCode(100); // "d"
JavaScript (to decimal)
"d".charCodeAt(0); // 100
Python
chr(100) # "d"
ord("d") # 100C/C++
char c = 100; // 'd' int code = 'd'; // 100
Lowercase Characters
Lowercase letters (97-122) represent small letters a-z. To convert between cases, add or subtract 32 from the ASCII value.