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") # 107C/C++
char c = 107; // 'k' int code = 'k'; // 107
Lowercase Characters
Lowercase letters (97-122) represent small letters a-z. To convert between cases, add or subtract 32 from the ASCII value.