HTML Entity for Lowercase F Hook (ƒ)

What You'll Learn
How to display the lowercase f with hook (ƒ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Also called the florin sign or function symbol, ƒ is used for historical Dutch guilder (florin) currency, mathematical function notation, and typography. It is U+0192 in the Latin Extended-B block.
Render it with ƒ, ƒ, ƒ, or CSS escape \0192. The named entity ƒ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase F Hook Entity
U+0192Latin Extended-B
ƒHexadecimal reference
ƒDecimal reference
ƒMost readable option
Name Value
──────────── ──────────
Unicode U+0192
Hex code ƒ
HTML code ƒ
Named entity ƒ
CSS code \0192
Meaning Latin small letter f with hook
Also known as Florin sign / function symbol
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase f hook (ƒ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0192";
}
</style>
</head>
<body>
<p>Symbol (hex): ƒ</p>
<p>Symbol (decimal): ƒ</p>
<p>Symbol (named): ƒ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase f hook (ƒ) and the named entity ƒ are supported in all modern browsers:
👀 Live Preview
See the lowercase f hook (ƒ) in common contexts:
🧠 How It Works
Hexadecimal Code
ƒ uses the Unicode hexadecimal value 192 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƒ uses the decimal Unicode value 402 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ƒ is the standard named entity for ƒ—readable in source HTML and part of the HTML5 entity set (short for “function” or “florin”).
CSS Entity
\0192 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ƒ. Unicode U+0192 sits in Latin Extended-B. Do not confuse ƒ (f hook / florin) with plain f (U+0066). The named entity ƒ is often the most readable choice.
Use Cases
The lowercase f hook (ƒ) is commonly used in:
Display the florin symbol (ƒ) for historical Dutch guilder or other florin contexts.
Represent the function symbol (script f) in equations, notation, and academic content.
Use in documentation or UI that denotes “function” (e.g., ƒ(x)) or code-related typography.
Use the hooked f in type specimens, logos, or design systems requiring the distinct ƒ glyph.
Publish papers or textbooks that use the florin or function symbol with correct encoding.
Folder abbreviations or labels where the hooked f is a standard convention.
Correct encoding so assistive technologies interpret ƒ (florin/function) correctly.
💡 Best Practices
Do
- Use
ƒin HTML when possible for readability - Serve pages as UTF-8; you can also type ƒ directly in UTF-8 source
- Use the same method (named or numeric) consistently within a document
- Use fonts that support Latin Extended-B characters
- Distinguish ƒ (f hook) from plain
f(U+0066)
Don’t
- Use plain
forfwhen ƒ is required - Put CSS escape
\0192in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Confuse ƒ with other f variants (reverse, tail, etc.)
- Mix entity styles randomly in one file
Key Takeaways
Four references render ƒ; named entity is most readable
ƒ ƒ ƒFor CSS stylesheets, use the escape in the content property
\0192Unicode U+0192 — LATIN SMALL LETTER F WITH HOOK
Florin sign and function symbol in Latin Extended-B
Previous: Lowercase F Next: Lowercase F Reverse
❓ Frequently Asked Questions
ƒ (named), ƒ (hex), ƒ (decimal), or \0192 in CSS content. All four methods render ƒ correctly.U+0192 (LATIN SMALL LETTER F WITH HOOK). Latin Extended-B block. Hex 192, decimal 402. Used as the florin currency symbol and function symbol in mathematics.ƒ for readable, maintainable HTML.U+0066 (Basic Latin). The f hook ƒ is U+0192 (Latin Extended-B) with a distinct hooked shape. Use ƒ or ƒ when you need ƒ, and f or f for the regular letter.U+0191. In HTML use Ƒ or Ƒ. There is no standard named entity for the uppercase form; use numeric or CSS codes for Ƒ.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
