keecode logokeecode
h

Lowercase h

Decimal: 104
Hex: 68
Lowercase

ASCII Values

Decimal

104

Hexadecimal

0x68

Character

h

Usage Examples

JavaScript (from decimal)

String.fromCharCode(104); // "h"

JavaScript (to decimal)

"h".charCodeAt(0); // 104

Python

chr(104)  # "h"
ord("h")  # 104

C/C++

char c = 104;  // 'h'
int code = 'h';  // 104