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