keecode logokeecode
P

Uppercase P

Decimal: 80
Hex: 50
Uppercase

ASCII Values

Decimal

80

Hexadecimal

0x50

Character

P

Usage Examples

JavaScript (from decimal)

String.fromCharCode(80); // "P"

JavaScript (to decimal)

"P".charCodeAt(0); // 80

Python

chr(80)  # "P"
ord("P")  # 80

C/C++

char c = 80;  // 'P'
int code = 'P';  // 80