HTML Entity for Uppercase F Turned Small (ⅎ)

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

What You'll Learn

How to display the turned small F (ⅎ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+214E (TURNED SMALL F), a smaller letterlike typographic variant used in special text formatting and mathematical notation. It sits in the Letterlike Symbols block.

Render it with ⅎ, ⅎ, or CSS escape \214E. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Uppercase F Turned Small Entity

Unicode U+214E

Letterlike Symbols

Hex Code ⅎ

Hexadecimal reference

HTML Code ⅎ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+214E
Hex code       ⅎ
HTML code      ⅎ
Named entity   (none)
CSS code       \214E
Meaning        Turned small F
Related        U+2132 = Ⅎ (turned capital F); U+0066 = f (lowercase)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

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

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

🌐 Browser Support

The turned small 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 small F (ⅎ) in typographic and notation contexts:

Large glyph
Turned F pair (capital)   ⅎ (small)
Not the same asplain f (U+0066)  |  ƒ (florin)
Unicode nameTURNED SMALL F (Letterlike Symbols)
Numeric refs&#x214E; &#8526; \214E

🧠 How It Works

1

Hexadecimal Code

&#x214E; uses the Unicode hexadecimal value 214E to display the turned small F. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\214E 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+214E sits in Letterlike Symbols. Related: turned capital F U+2132 (Ⅎ). Do not confuse with plain f (U+0066). There is no named HTML entity.

Use Cases

The turned small 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 &#8526; or &#x214E; 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 small F) from Ⅎ (turned capital F) and plain f
  • 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 Ⅎ when ⅎ is required
  • Put CSS escape \214E in HTML text nodes
  • Use padded Unicode notation like U+0214E—the correct value is U+214E
  • Use \0214E in CSS—the correct escape is \214E

Key Takeaways

1

Three references render ⅎ (no named entity)

&#x214E; &#8526;
2

For CSS stylesheets, use the escape in the content property

\214E
3

Unicode U+214E — TURNED SMALL F

4

Smaller turned F variant; pair with U+2132 (turned capital F)

❓ Frequently Asked Questions

Use &#x214E; (hex), &#8526; (decimal), or \214E in CSS content. There is no named HTML entity for this character.
U+214E (TURNED SMALL F). Letterlike Symbols block. Hex 214E, decimal 8526. 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 (&#8526; or &#x214E;) is used in HTML content. The CSS entity (\214E) 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 &#8526; or &#x214E; in HTML, or \214E 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