HTML Entity for Uppercase F Turned (Ⅎ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2132

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

Unicode U+2132

Letterlike Symbols

Hex Code Ⅎ

Hexadecimal reference

HTML Code Ⅎ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the turned capital F (Ⅎ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2132";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2132;</p>
<p>Symbol (decimal): &#8498;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The turned capital F (Ⅎ) renders correctly in modern browsers when UTF-8 is used and the font supports Letterlike Symbols:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the turned capital F (Ⅎ) in typographic and notation contexts:

Large glyph
F variantsF     Ⅎ
Not the same asplain F (U+0046)  |  Ƒ (f hook)  |  ƒ (florin)
Smaller pairNext: turned F small (U+214E, ⅎ)
Numeric refs&#x2132; &#8498; \2132

🧠 How It Works

1

Hexadecimal Code

&#x2132; uses the Unicode hexadecimal value 2132 to display the turned capital F. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8498; uses the decimal Unicode value 8498 to display the same character. A common method for Letterlike Symbols.

HTML markup
3

CSS Entity

\2132 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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 &Fscr; (U+2131), or florin ƒ (U+0192). There is no named HTML entity.

Use Cases

The turned capital F (Ⅎ) is commonly used in:

🎨 Typography

Typographic designs, font demonstrations, and text formatting requiring letterlike symbols.

📐 Mathematical notation

Equations and academic papers that use special typographic letter variants.

📝 Linguistic content

Language research and documentation referencing letterlike symbol variants.

📄 Special formatting

Creative typography and artistic content needing unique F variants.

📚 Academic papers

Scholarly publications referencing Letterlike Symbols in Unicode.

⚙ Font testing

Character set demonstrations and Unicode showcases for Letterlike Symbols coverage.

📚 Educational content

Unicode tutorials and character encoding guides explaining turned letters.

💡 Best Practices

Do

  • Use &#8498; or &#x2132; 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 F or &Fscr; when Ⅎ is required
  • Put CSS escape \2132 in HTML text nodes
  • Use padded Unicode notation like U+02132—the correct value is U+2132
  • Use \02132 in CSS—the correct escape is \2132

Key Takeaways

1

Three references render Ⅎ (no named entity)

&#x2132; &#8498;
2

For CSS stylesheets, use the escape in the content property

\2132
3

Unicode U+2132 — TURNED CAPITAL F

4

Letterlike typographic variant; pair with U+214E (turned F small)

❓ Frequently Asked Questions

Use &#x2132; (hex), &#8498; (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.
In typography, special text formatting, mathematical notation, linguistic content, academic papers, and any content requiring letterlike symbol variants.
HTML code (&#8498; or &#x2132;) 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.
No. There is no named HTML entity for Ⅎ. Use &#8498; or &#x2132; 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful