HTML Entity for Uppercase F (F)

What You'll Learn
How to display the uppercase letter F in HTML using entity methods. The letter F is the sixth letter of the Latin alphabet (U+0046) and is part of the Basic Latin block. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.
This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &F; for this letter.
⚡ Quick Reference — Uppercase F Entity
U+0046Basic Latin (ASCII)
FHexadecimal reference
FDecimal reference
FType directly (no named entity)
Name Value
──────────── ──────────
Unicode U+0046
Hex code F
HTML code F
Named entity (none — use F directly)
CSS code \46
Meaning Latin capital letter F
Related U+0066 = f (lowercase)
Block Basic Latin (U+0000–U+007F)Complete HTML Example
A simple example showing the uppercase letter F using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\46";
}
</style>
</head>
<body>
<p>Symbol (hex): F</p>
<p>Symbol (decimal): F</p>
<p>Symbol (direct): F</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase letter F (U+0046) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the uppercase letter F in common text contexts:
🧠 How It Works
Hexadecimal Code
F uses the Unicode hexadecimal value 46 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
F uses the decimal Unicode value 70 to display the same character. This is the ASCII/Unicode decimal for F.
Direct Character
Type F directly in HTML. There is no named entity like &F;; the character itself is the standard approach in body text.
CSS Entity
\46 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: F. Unicode U+0046 sits in Basic Latin. The lowercase form is U+0066 (f). In normal text, typing F is preferred.
Use Cases
The uppercase letter F (or its entity forms) is commonly used in:
Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.
Use in ARIA labels, alt text, placeholders, and attribute values; numeric entities help when escaping is needed.
Reference in font specs, CSS content, or generated text via CSS entities.
Teaching the alphabet, phonics, or character encoding; entity codes clarify the exact character.
When building HTML or strings programmatically, numeric entities ensure correct output.
Part of Basic Latin used across languages; entities can help in legacy encoding contexts.
CSS content or list-style may use the character via entity for styling.
💡 Best Practices
Do
- Type
Fdirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
ForF) when escaping is required - Use
\46in CSScontentwhen generating the letter via pseudo-elements - Remember uppercase F is U+0046 and lowercase f is U+0066 when case matters
Don’t
- Overuse numeric entities for
Fin normal readable text - Expect a named HTML entity like
&F;—none exists for this letter - Put CSS escape
\46in HTML text nodes - Confuse
F(U+0046) with variant letters like Ƒ (F hook) - Mix entity styles randomly in one file without reason
Key Takeaways
Type F directly, or use hex/decimal references
F FFor CSS stylesheets, use the escape in the content property
\46Unicode U+0046 — LATIN CAPITAL LETTER F
Sixth letter of the Latin alphabet (Basic Latin block)
Previous: Uppercase Ezh Reverse (Ƹ) Next: Uppercase F Hook (Ƒ)
❓ Frequently Asked Questions
F directly, or use F (hex), F (decimal), or \46 in CSS content. For most content, typing F is standard; use numeric or CSS entities when escaping or generating via CSS.U+0046 (LATIN CAPITAL LETTER F). Basic Latin block. Hex 46, decimal 70. It is the sixth letter of the Latin alphabet.::before/::after, ensuring encoding in legacy systems, or building strings programmatically. In normal body text, typing F is preferred.F or F) is used in HTML content or attributes. The CSS entity (\46) is used in CSS, e.g. in the content property of pseudo-elements. Both produce F but in different contexts.&F; for the letter F. Use the character F directly, or numeric references F (decimal) or F (hex). Named entities are mainly for characters with special meaning (e.g. <, &).Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
