keecode logokeecode
G

Uppercase G

Decimal: 71
Hex: 47
Uppercase

ASCII Values

Decimal

71

Hexadecimal

0x47

Character

G

Usage Examples

JavaScript (from decimal)

String.fromCharCode(71); // "G"

JavaScript (to decimal)

"G".charCodeAt(0); // 71

Python

chr(71)  # "G"
ord("G")  # 71

C/C++

char c = 71;  // 'G'
int code = 'G';  // 71