HTML Entity for Uppercase F Turned (Ⅎ)

What You'll Learn
How to display the turned capital F (Ⅎ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+2132 (TURNED CAPITAL F), a letterlike typographic variant used in special text formatting and mathematical notation. It sits in the Letterlike Symbols block.
Render it with Ⅎ, Ⅎ, or CSS escape \2132. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase F Turned Entity
U+2132Letterlike Symbols
ℲHexadecimal reference
ℲDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2132
Hex code Ⅎ
HTML code Ⅎ
Named entity (none)
CSS code \2132
Meaning Turned capital F
Related U+2131 = ℱ (script F); U+214E = ⅎ (turned F small)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the turned capital F (Ⅎ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2132";
}
</style>
</head>
<body>
<p>Symbol (hex): Ⅎ</p>
<p>Symbol (decimal): Ⅎ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The turned capital F (Ⅎ) renders correctly in modern browsers when UTF-8 is used and the font supports Letterlike Symbols:
👀 Live Preview
See the turned capital F (Ⅎ) in typographic and notation contexts:
🧠 How It Works
Hexadecimal Code
Ⅎ uses the Unicode hexadecimal value 2132 to display the turned capital F. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ⅎ uses the decimal Unicode value 8498 to display the same character. A common method for Letterlike Symbols.
CSS Entity
\2132 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ⅎ. Unicode U+2132 sits in Letterlike Symbols. Do not confuse with plain F (U+0046), script ℱ (U+2131), or florin ƒ (U+0192). There is no named HTML entity.
Use Cases
The turned capital F (Ⅎ) is commonly used in:
Typographic designs, font demonstrations, and text formatting requiring letterlike symbols.
Equations and academic papers that use special typographic letter variants.
Language research and documentation referencing letterlike symbol variants.
Creative typography and artistic content needing unique F variants.
Scholarly publications referencing Letterlike Symbols in Unicode.
Character set demonstrations and Unicode showcases for Letterlike Symbols coverage.
Unicode tutorials and character encoding guides explaining turned letters.
💡 Best Practices
Do
- Use
ℲorℲin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ⅎ directly in UTF-8 source
- Use fonts that support Letterlike Symbols (U+2100–U+214F)
- Distinguish Ⅎ (turned F) from plain
F, ℱ (script F), and ƒ (florin) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for Ⅎ
- Substitute plain
Forℱwhen Ⅎ is required - Put CSS escape
\2132in HTML text nodes - Use padded Unicode notation like U+02132—the correct value is
U+2132 - Use
\02132in CSS—the correct escape is\2132
Key Takeaways
Three references render Ⅎ (no named entity)
Ⅎ ℲFor CSS stylesheets, use the escape in the content property
\2132Unicode U+2132 — TURNED CAPITAL F
Letterlike typographic variant; pair with U+214E (turned F small)
Previous: Uppercase F Script Capital (ℱ) Next: Uppercase F Turned Small (ⅎ)
❓ Frequently Asked Questions
Ⅎ (hex), Ⅎ (decimal), or \2132 in CSS content. There is no named HTML entity for this character.U+2132 (TURNED CAPITAL F). Letterlike Symbols block. Hex 2132, decimal 8498. Used in typography and special text formatting.Ⅎ or Ⅎ) is used in HTML content. The CSS entity (\2132) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ⅎ but in different contexts.Ⅎ or Ⅎ in HTML, or \2132 in CSS. This is standard for Letterlike Symbols without named entities.Explore More HTML Entities!
Discover 1500+ HTML character references — letterlike symbols, math notation, and more.
8 people found this page helpful
