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