HTML Entity for Uppercase F Hook (Ƒ)

What You'll Learn
How to display the uppercase f with hook (Ƒ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0191 (LATIN CAPITAL LETTER F WITH HOOK), the capital form of the hooked f used in linguistic and phonetic notation. It sits in the Latin Extended-B block.
Render it with Ƒ, Ƒ, or CSS escape \0191. There is no named HTML entity for this character (unlike the lowercase ƒ, which has ƒ).
⚡ Quick Reference — Uppercase F Hook Entity
U+0191Latin Extended-B
ƑHexadecimal reference
ƑDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0191
Hex code Ƒ
HTML code Ƒ
Named entity (none)
CSS code \0191
Meaning Latin capital letter F with hook
Related U+0192 = ƒ (lowercase f hook / ƒ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase f hook (Ƒ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0191";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƒ</p>
<p>Symbol (decimal): Ƒ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase f hook (Ƒ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase f hook (Ƒ) in linguistic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ƒ uses the Unicode hexadecimal value 0191 to display the uppercase f hook. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƒ uses the decimal Unicode value 401 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0191 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+0191 sits in Latin Extended-B. Lowercase counterpart: U+0192 (ƒ, ƒ). There is no named HTML entity for Ƒ. Do not confuse with plain F (U+0046).
Use Cases
The uppercase f hook (Ƒ) is commonly used in:
Language research, documentation, and academic papers studying extended Latin characters with hooks.
Phonetic guides and pronunciation references using the capital hooked f letter.
Typographic designs, font demonstrations, and text formatting requiring extended Latin glyphs.
Scholarly publications and linguistic databases requiring the capital f hook character.
Character set demonstrations and Unicode showcases for Latin Extended-B coverage.
Content using extended Latin characters from languages and writing systems beyond Basic Latin.
Unicode tutorials and character encoding guides explaining hooked Latin 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 Latin Extended-B (U+0180–U+024F)
- Distinguish Ƒ (f hook) from plain
F(U+0046) and ƒ (lowercase 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
\0191in HTML text nodes - Use padded Unicode notation like U+00191—the correct value is
U+0191 - Use
\00191in CSS—the correct escape is\0191
Key Takeaways
Three references render Ƒ (no named entity)
Ƒ ƑFor CSS stylesheets, use the escape in the content property
\0191Unicode U+0191 — LATIN CAPITAL LETTER F WITH HOOK
Capital form of hooked f in Latin Extended-B; pair with U+0192 (ƒ)
Previous: Uppercase F Next: Uppercase F Script Capital (ℱ)
❓ Frequently Asked Questions
Ƒ (hex), Ƒ (decimal), or \0191 in CSS content. There is no named HTML entity for this character.U+0191 (LATIN CAPITAL LETTER F WITH HOOK). Latin Extended-B block. Hex 0191, decimal 401. Used in linguistic studies and phonetic notation.Ƒ or Ƒ) is used in HTML content. The CSS entity (\0191) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ƒ but in different contexts.Ƒ or Ƒ in HTML, or \0191 in CSS. The lowercase f hook ƒ has ƒ, but the uppercase form does not.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic symbols, and more.
8 people found this page helpful
