keecode logokeecode
E

Uppercase E

Decimal: 69
Hex: 45
Uppercase

ASCII Values

Decimal

69

Hexadecimal

0x45

Character

E

Usage Examples

JavaScript (from decimal)

String.fromCharCode(69); // "E"

JavaScript (to decimal)

"E".charCodeAt(0); // 69

Python

chr(69)  # "E"
ord("E")  # 69

C/C++

char c = 69;  // 'E'
int code = 'E';  // 69