HTML Entity for Lowercase F (f)

What You'll Learn
How to display the lowercase letter f in HTML using entity methods. The letter f is the sixth letter of the Latin alphabet (U+0066) and is part of the Basic Latin block. It appears in every Western-language text, from body copy to form labels and code examples. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.
This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &f; for this letter.
⚡ Quick Reference — Lowercase F Entity
U+0066Basic Latin (ASCII)
fHexadecimal reference
fDecimal reference
fType directly (no named entity)
Name Value
──────────── ──────────
Unicode U+0066
Hex code f
HTML code f
Named entity (none — use f directly)
CSS code \66
Meaning Latin small letter f
Related U+0046 = F (uppercase)
Block Basic Latin (U+0000–U+007F)Complete HTML Example
A simple example showing the lowercase letter f using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\66";
}
</style>
</head>
<body>
<p>Symbol (hex): f</p>
<p>Symbol (decimal): f</p>
<p>Symbol (direct): f</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase letter f (U+0066) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the lowercase letter f in common text contexts:
ƒ)🧠 How It Works
Hexadecimal Code
f uses the Unicode hexadecimal value 66 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
f uses the decimal Unicode value 102 to display the same character. This is the ASCII/Unicode decimal for f.
Direct Character
Type f directly in HTML. There is no named entity like &f;; the character itself is the standard approach in body text.
CSS Entity
\66 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: f. Unicode U+0066 sits in Basic Latin. The uppercase form is U+0046 (F). Do not confuse plain f with ƒ (f hook, ƒ). In normal text, typing f is preferred.
Use Cases
The lowercase letter f (or its entity forms) is commonly used in:
Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.
Display labels, placeholders, or values that include the letter f (e.g., “first name”, “format”, “file”).
Using \66 in the CSS content property to insert f via ::before or ::after.
Code examples, variable names, function names, and technical documentation that use the character f.
When building HTML in code, using f or f ensures correct output regardless of encoding context.
Reference or demonstrate the lowercase f in font samples, type specimens, and design systems.
Ensure consistent representation of the letter f across different encodings and platforms.
💡 Best Practices
Do
- Type
fdirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
forf) when escaping is required - Use
\66in CSScontentwhen generating the letter via pseudo-elements - Remember lowercase f is U+0066 and uppercase F is U+0046 when case matters
Don’t
- Overuse numeric entities for
fin normal readable text - Expect a named HTML entity like
&f;—none exists for this letter - Confuse plain
f(U+0066) with ƒ (f hook / florin, U+0192,ƒ) - Put CSS escape
\66in HTML text nodes - Mix entity styles randomly in one file without reason
Key Takeaways
Type f directly, or use hex/decimal references
f fFor CSS stylesheets, use the escape in the content property
\66Unicode U+0066 — LATIN SMALL LETTER F
Sixth letter of the Latin alphabet (Basic Latin block)
Previous: Lowercase Ezh Tail (ƺ) Next: Lowercase F Hook
❓ Frequently Asked Questions
f directly, or use f (hex), f (decimal), or \66 in CSS content. For most content, typing f is standard; use numeric or CSS entities when escaping or generating via CSS.U+0066 (LATIN SMALL LETTER F). Basic Latin block. Hex 66, decimal 102. It is the sixth letter of the Latin alphabet and a standard character in virtually all Western scripts.::before/::after content, or ensuring encoding in legacy systems. For normal body text, typing f is preferred.U+0066 (Basic Latin). The character ƒ (Latin small letter f with hook, or florin/function symbol) is U+0192 and has the HTML named entity ƒ. Use f for the letter and ƒ only when you need the hook symbol (e.g., currency or function notation).&f; for the letter f. Use the character f directly, or numeric references f (decimal) or f (hex). Named entities are mainly for characters with special meaning (e.g. <, &).Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
