ASCII 70
Latin Capital Letter F (F)
Printable ASCII
Uppercase letter F.
All encodings at a glance
| Decimal | 70 |
| Hexadecimal | 0x46 |
| Octal | 0106 |
| Binary | 01000110 |
| HTML numeric entity | F |
| URL encoding | %46 |
| UTF-8 bytes | 0x46 |
Code snippets
JavaScript
String.fromCharCode(70); // "F"
70.toString(16); // "46"Python
chr(70) # 'F'
ord(chr(70)) # 70
hex(70) # '0x46'HTML
F <!-- numeric entity (no named entity for this character) -->