keecode logokeecode
I

Uppercase I

Decimal: 73
Hex: 49
Uppercase

ASCII Values

Decimal

73

Hexadecimal

0x49

Character

I

Usage Examples

JavaScript (from decimal)

String.fromCharCode(73); // "I"

JavaScript (to decimal)

"I".charCodeAt(0); // 73

Python

chr(73)  # "I"
ord("I")  # 73

C/C++

char c = 73;  // 'I'
int code = 'I';  // 73