keecode logokeecode
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")  # 112

C/C++

char c = 112;  // 'p'
int code = 'p';  // 112