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