keecode logokeecode
d

Lowercase d

Decimal: 100
Hex: 64
Lowercase

ASCII Values

Decimal

100

Hexadecimal

0x64

Character

d

Usage Examples

JavaScript (from decimal)

String.fromCharCode(100); // "d"

JavaScript (to decimal)

"d".charCodeAt(0); // 100

Python

chr(100)  # "d"
ord("d")  # 100

C/C++

char c = 100;  // 'd'
int code = 'd';  // 100