keecode logokeecode
L

Uppercase L

Decimal: 76
Hex: 4C
Uppercase

ASCII Values

Decimal

76

Hexadecimal

0x4C

Character

L

Usage Examples

JavaScript (from decimal)

String.fromCharCode(76); // "L"

JavaScript (to decimal)

"L".charCodeAt(0); // 76

Python

chr(76)  # "L"
ord("L")  # 76

C/C++

char c = 76;  // 'L'
int code = 'L';  // 76