keecode logokeecode
k

Lowercase k

Decimal: 107
Hex: 6B
Lowercase

ASCII Values

Decimal

107

Hexadecimal

0x6B

Character

k

Usage Examples

JavaScript (from decimal)

String.fromCharCode(107); // "k"

JavaScript (to decimal)

"k".charCodeAt(0); // 107

Python

chr(107)  # "k"
ord("k")  # 107

C/C++

char c = 107;  // 'k'
int code = 'k';  // 107