keecode logokeecode
H

Uppercase H

Decimal: 72
Hex: 48
Uppercase

ASCII Values

Decimal

72

Hexadecimal

0x48

Character

H

Usage Examples

JavaScript (from decimal)

String.fromCharCode(72); // "H"

JavaScript (to decimal)

"H".charCodeAt(0); // 72

Python

chr(72)  # "H"
ord("H")  # 72

C/C++

char c = 72;  // 'H'
int code = 'H';  // 72