F

ASCII Character: Uppercase F

ASCII Code 70 · Unicode U+0046 · Hex 0x46

F uppercase-f

About the Uppercase F Character

ASCII code 70 (0x46) represents the Uppercase F character "F". The uppercase letter "F" has ASCII code 70. Uppercase letters A–Z span codes 65–90. The relationship between uppercase and lowercase ASCII letters is consistent: adding 32 to an uppercase letter’s code gives the corresponding lowercase letter (e.g., 'A' at 65 + 32 = 'a' at 97). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 70
Hexadecimal 0x46
Octal 106
Binary 01000110
Unicode U+0046
Unicode Name LATIN CAPITAL LETTER F
HTML Numeric F
HTML Entity
URL Escape %46
UTF-8 (Hex) 46
Quoted-Printable F

Source Code Examples

JavaScript
// Character literal
let char = 'F';
// Using char code
let char2 = String.fromCharCode(70);
// Unicode escape
let char3 = '\x46';
Python
# Character literal
char = 'F'
# Using chr()
char = chr(70)
# Using ord() to get code
code = ord('F')  # Returns 70
HTML
<!-- Direct character -->
F
<!-- HTML entity (numeric) -->
&#70;
<!-- Hex entity -->
&#x46;
C#
// Character literal
char c = 'F';
// Using cast
char c2 = (char)70;
// To get code from char
int code = (int)'F';  // Returns 70

Navigate

Copied!