keecode logokeecode
C

Uppercase C

Decimal: 67
Hex: 43
Uppercase

ASCII Values

Decimal

67

Hexadecimal

0x43

Character

C

Usage Examples

JavaScript (from decimal)

String.fromCharCode(67); // "C"

JavaScript (to decimal)

"C".charCodeAt(0); // 67

Python

chr(67)  # "C"
ord("C")  # 67

C/C++

char c = 67;  // 'C'
int code = 'C';  // 67