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