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