DevKits

ASCII 70

Latin Capital Letter F (F)

Printable ASCII

Uppercase letter F.

All encodings at a glance

Decimal70
Hexadecimal0x46
Octal0106
Binary01000110
HTML numeric entityF
URL encoding%46
UTF-8 bytes0x46

Code snippets

JavaScript

String.fromCharCode(70); // "F"
70.toString(16); // "46"

Python

chr(70)           # 'F'
ord(chr(70))      # 70
hex(70)           # '0x46'

HTML

&#70;   <!-- numeric entity (no named entity for this character) -->

Nearby codes