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