ASCII 102
Latin Small Letter F (f)
Printable ASCII
Lowercase letter f.
All encodings at a glance
| Decimal | 102 |
| Hexadecimal | 0x66 |
| Octal | 0146 |
| Binary | 01100110 |
| HTML numeric entity | f |
| URL encoding | %66 |
| UTF-8 bytes | 0x66 |
Code snippets
JavaScript
String.fromCharCode(102); // "f"
102.toString(16); // "66"Python
chr(102) # 'f'
ord(chr(102)) # 102
hex(102) # '0x66'HTML
f <!-- numeric entity (no named entity for this character) -->