keecode logokeecode
t

Lowercase t

Decimal: 116
Hex: 74
Lowercase

ASCII Values

Decimal

116

Hexadecimal

0x74

Character

t

Usage Examples

JavaScript (from decimal)

String.fromCharCode(116); // "t"

JavaScript (to decimal)

"t".charCodeAt(0); // 116

Python

chr(116)  # "t"
ord("t")  # 116

C/C++

char c = 116;  // 't'
int code = 't';  // 116