keecode logokeecode
j

Lowercase j

Decimal: 106
Hex: 6A
Lowercase

ASCII Values

Decimal

106

Hexadecimal

0x6A

Character

j

Usage Examples

JavaScript (from decimal)

String.fromCharCode(106); // "j"

JavaScript (to decimal)

"j".charCodeAt(0); // 106

Python

chr(106)  # "j"
ord("j")  # 106

C/C++

char c = 106;  // 'j'
int code = 'j';  // 106