HTML Entity for Uppercase F Script Capital (ℱ)

What You'll Learn
How to display the script capital F (ℱ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is used in mathematical notation, calligraphy, and formal typography. Its official Unicode name is SCRIPT CAPITAL F (U+2131).
Render it with ℱ, ℱ, ℱ, or CSS escape \2131. The named entity ℱ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase F Script Capital Entity
U+2131Letterlike Symbols
ℱHexadecimal reference
ℱDecimal reference
ℱMost readable option
Name Value
──────────── ──────────
Unicode U+2131
Hex code ℱ
HTML code ℱ
Named entity ℱ
CSS code \2131
Meaning Script capital F
Related U+2130 = ℰ (script E); U+212C = ℬ (script B)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the script capital F (ℱ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2131";
}
</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 script capital F (ℱ) and the named entity ℱ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the script capital F (ℱ) in mathematical and typographic contexts:
🧠 How It Works
Hexadecimal Code
ℱ uses the Unicode hexadecimal value 2131 to display the script capital F. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℱ uses the decimal Unicode value 8497 to display the same character. A common method for Letterlike Symbols.
Named Entity
ℱ is the standard named entity for ℱ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\2131 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+2131 sits in Letterlike Symbols. Do not confuse with plain F (U+0046), Ƒ (f hook), or ƒ (florin).
Use Cases
The script capital F (ℱ) is commonly used in:
Script-style capital F in equations, function notation, and formal mathematical writing.
Elegant script lettering in calligraphy, invitations, and formal design projects.
Certificates, formal documents, and sophisticated content requiring script capital letters.
Scholarly documents and research papers using script letter notation.
Luxury product descriptions, logos, and high-end design requiring script F styling.
Scientific blogs and online textbooks that need proper script F rendering.
Correct rendering so typographic and mathematical content can be found and indexed.
💡 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 math-friendly fonts (e.g. Cambria Math, STIX) for reliable script glyph display
- Distinguish ℱ (script F) from plain
F(U+0046) - Pick one entity style (named, hex, or decimal) per project for consistency
Don’t
- Substitute plain
Fwhen ℱ is required in math or script notation - Put CSS escape
\2131in HTML text nodes - Use padded Unicode notation like U+02131—the correct value is
U+2131 - Use
\02131in CSS—the correct escape is\2131 - Assume all fonts render Letterlike Symbols identically
Key Takeaways
Four references render ℱ; named entity is most readable
ℱ ℱ ℱFor CSS stylesheets, use the escape in the content property
\2131Unicode U+2131 — SCRIPT CAPITAL F
Used in math notation, calligraphy, formal typography, and elegant design
Previous: Uppercase F Hook (Ƒ) Next: Uppercase F Turned (Ⅎ)
❓ Frequently Asked Questions
ℱ (named), ℱ (hex), ℱ (decimal), or \2131 in CSS content. The named entity ℱ is the most readable for HTML content.U+2131 (SCRIPT CAPITAL F). Letterlike Symbols block. Hex 2131, decimal 8497. Used in mathematical notation, calligraphy, and formal typography.ℱ or ℱ) or the named entity ℱ is used in HTML content. The CSS entity (\2131) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℱ but in different contexts.ℱ. It is part of the standard HTML5 entity set and is well supported. You can also use ℱ or ℱ for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — script letters, math symbols, and more.
8 people found this page helpful
