HTML Entity for Uppercase F Turned Small (ⅎ)

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
U+214ELetterlike Symbols
ⅎHexadecimal reference
ⅎDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing the turned small F (ⅎ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\214E";
}
</style>
</head>
<body>
<p>Symbol (hex): ⅎ</p>
<p>Symbol (decimal): ⅎ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The turned small F (ⅎ) renders correctly in modern browsers when UTF-8 is used and the font supports Letterlike Symbols:
👀 Live Preview
See the turned small F (ⅎ) in typographic and notation contexts:
🧠 How It Works
Hexadecimal Code
ⅎ uses the Unicode hexadecimal value 214E to display the turned small F. The x prefix indicates hexadecimal format.
Decimal HTML Code
ⅎ uses the decimal Unicode value 8526 to display the same character. A common method for Letterlike Symbols.
CSS Entity
\214E 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+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:
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 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
for Ⅎ when ⅎ is required - Put CSS escape
\214Ein HTML text nodes - Use padded Unicode notation like U+0214E—the correct value is
U+214E - Use
\0214Ein CSS—the correct escape is\214E
Key Takeaways
Three references render ⅎ (no named entity)
ⅎ ⅎFor CSS stylesheets, use the escape in the content property
\214EUnicode U+214E — TURNED SMALL F
Smaller turned F variant; pair with U+2132 (turned capital F)
Previous: Uppercase F Turned (Ⅎ) Next: Uppercase G
❓ Frequently Asked Questions
ⅎ (hex), ⅎ (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.ⅎ or ⅎ) 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.ⅎ or ⅎ 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.
8 people found this page helpful
