f
Lowercase f
Decimal: 102
Hex: 66
Lowercase
ASCII Values
Decimal
102
Hexadecimal
0x66
Character
f
Usage Examples
JavaScript (from decimal)
String.fromCharCode(102); // "f"
JavaScript (to decimal)
"f".charCodeAt(0); // 102
Python
chr(102) # "f"
ord("f") # 102C/C++
char c = 102; // 'f' int code = 'f'; // 102
Lowercase Characters
Lowercase letters (97-122) represent small letters a-z. To convert between cases, add or subtract 32 from the ASCII value.