keecode logokeecode
c

Lowercase c

Decimal: 99
Hex: 63
Lowercase

ASCII Values

Decimal

99

Hexadecimal

0x63

Character

c

Usage Examples

JavaScript (from decimal)

String.fromCharCode(99); // "c"

JavaScript (to decimal)

"c".charCodeAt(0); // 99

Python

chr(99)  # "c"
ord("c")  # 99

C/C++

char c = 99;  // 'c'
int code = 'c';  // 99