keecode logokeecode
F

Uppercase F

Decimal: 70
Hex: 46
Uppercase

ASCII Values

Decimal

70

Hexadecimal

0x46

Character

F

Usage Examples

JavaScript (from decimal)

String.fromCharCode(70); // "F"

JavaScript (to decimal)

"F".charCodeAt(0); // 70

Python

chr(70)  # "F"
ord("F")  # 70

C/C++

char c = 70;  // 'F'
int code = 'F';  // 70