HTML Entity for Double Struck Small Gamma (ℽ)

What You'll Learn
How to display the Double Struck Small Gamma (ℽ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+213D (DOUBLE-STRUCK SMALL GAMMA) in the Letterlike Symbols block (U+2100–U+214F)—the open-face (double-struck) form of Greek small gamma used in mathematics, physics, and set theory.
Render it with ℽ, ℽ, or CSS escape \213D. There is no named HTML entity for U+213D. For regular (non-double-struck) small gamma use γ or γ (γ). For capital double-struck Gamma see U+213E (ℾ). See also math entities.
⚡ Quick Reference — Double Struck Small Gamma
U+213DLetterlike Symbols block
ℽHexadecimal reference
ℽDecimal reference
—Not available for U+213D
Name Value
──────────── ──────────
Unicode U+213D
Hex code ℽ
HTML code ℽ
Named entity —
CSS code \213D
Related U+03B3 = Small gamma (γ); U+213E = Capital (ℾ)Complete HTML Example
This example demonstrates the Double Struck Small Gamma (ℽ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\213D";
}
</style>
</head>
<body>
<p>Double Struck Small Gamma using Hexadecimal: ℽ</p>
<p>Double Struck Small Gamma using HTML Code: ℽ</p>
<p id="point">Double Struck Small Gamma using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+213D is widely supported in modern browsers when rendered with a font that includes Letterlike Symbols:
👀 Live Preview
See the Double Struck Small Gamma (ℽ) in mathematical notation:
🧠 How It Works
Hexadecimal Code
ℽ uses the Unicode hexadecimal value 213D to display the Double Struck Small Gamma. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℽ uses the decimal Unicode value 8509 to display the same character.
CSS Entity
\213D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ℽ. Unicode U+213D. Regular small gamma is γ (γ, U+03B3). Capital double-struck is U+213E (ℾ). No named entity for U+213D.
Use Cases
The Double Struck Small Gamma (ℽ) commonly appears in:
Notation for sets, variables, or constants that use the double-struck small gamma in mathematical expressions and proofs.
Euler–Mascheroni constant or other gamma-related notation where the double-struck form distinguishes from regular γ.
Textbooks, papers, and course materials requiring letterlike math symbols in HTML.
Equation editors and math rendering alongside other double-struck Greek letters.
Entity lists and guides for Letterlike Symbols (U+2100–U+214F).
Use math-capable fonts so ℽ renders clearly for all readers.
💡 Best Practices
Do
- Use
ℽorℽfor ℽ - Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
- Distinguish ℽ (double-struck) from γ (
γ, regular) - Distinguish small ℽ from capital double-struck ℾ (U+213E)
- Use
\213Donly inside CSScontent - Keep entity style consistent across the document
Don’t
- Assume a named entity exists for U+213D—it does not
- Use
γwhen you need regular γ, not double-struck ℽ - Put CSS escape
\213Din HTML text nodes - Forget UTF-8 (
<meta charset="utf-8">) on math pages - Assume every font includes Letterlike Symbols
Key Takeaways
No named entity—use numeric references
ℽ ℽFor CSS stylesheets, use the escape in the content property
\213DUnicode U+213D DOUBLE-STRUCK SMALL GAMMA
Regular γ: U+03B3 via γ or γ
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
ℽ (hex), ℽ (decimal), or \213D in CSS content. All produce ℽ. There is no named HTML entity for U+213D.U+213D (DOUBLE-STRUCK SMALL GAMMA). Letterlike Symbols block (U+2100–U+214F). Hex 213D, decimal 8509. Double-struck form of Greek small gamma.ℽ or ℽ) go in markup. The CSS escape \213D is used in stylesheets, typically in the content property of pseudo-elements.ⅈ, ⅆ). U+213D does not. Use ℽ, ℽ, or \213D. For regular small gamma use γ (U+03B3, γ).Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letterlike glyphs, and more.
8 people found this page helpful
