HTML Entity for Double Struck Small Pi (ℼ)

What You'll Learn
How to display the Double Struck Small Pi (ℼ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+213C (DOUBLE-STRUCK SMALL PI) in the Letterlike Symbols block (U+2100–U+214F)—the open-face (double-struck) form of Greek small pi used in mathematics and set theory.
Render it with ℼ, ℼ, or CSS escape \213C. There is no named HTML entity for U+213C. For regular (non-double-struck) small pi use π or π (π). For capital double-struck Pi see U+213F (ℿ). See also math entities.
⚡ Quick Reference — Double Struck Small Pi
U+213CLetterlike Symbols block
ℼHexadecimal reference
ℼDecimal reference
—Not available for U+213C
Name Value
──────────── ──────────
Unicode U+213C
Hex code ℼ
HTML code ℼ
Named entity —
CSS code \213C
Related U+03C0 = Small pi (π); U+213F = Capital (ℿ)Complete HTML Example
This example demonstrates the Double Struck Small Pi (ℼ) 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: "\213C";
}
</style>
</head>
<body>
<p>Double Struck Small Pi using Hexadecimal: ℼ</p>
<p>Double Struck Small Pi using HTML Code: ℼ</p>
<p id="point">Double Struck Small Pi using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+213C is widely supported in modern browsers when rendered with a font that includes Letterlike Symbols:
👀 Live Preview
See the Double Struck Small Pi (ℼ) in mathematical notation:
🧠 How It Works
Hexadecimal Code
ℼ uses the Unicode hexadecimal value 213C to display the Double Struck Small Pi. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℼ uses the decimal Unicode value 8508 to display the same character.
CSS Entity
\213C 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+213C. Regular small pi is π (π, U+03C0). Capital double-struck is U+213F (ℿ). No named entity for U+213C.
Use Cases
The Double Struck Small Pi (ℼ) commonly appears in:
Notation for sets, variables, or product operators that use the double-struck small pi in mathematical expressions.
Mathematical product notation where ℼ denotes a product operator or variable in double-struck style, distinct from the constant π.
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+213F)
- Use
\213Conly inside CSScontent - Keep entity style consistent across the document
Don’t
- Assume a named entity exists for U+213C—it does not
- Use
πwhen you need regular π, not double-struck ℼ - Put CSS escape
\213Cin 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
\213CUnicode U+213C DOUBLE-STRUCK SMALL PI
Regular π: U+03C0 via π or π
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
ℼ (hex), ℼ (decimal), or \213C in CSS content. All produce ℼ. There is no named HTML entity for U+213C.U+213C (DOUBLE-STRUCK SMALL PI). Letterlike Symbols block (U+2100–U+214F). Hex 213C, decimal 8508. Double-struck form of Greek small pi.ℼ or ℼ) go in markup. The CSS escape \213C is used in stylesheets, typically in the content property of pseudo-elements.ⅈ, ⅆ). U+213C does not. Use ℼ, ℼ, or \213C. For regular small pi use π (U+03C0, π).Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letterlike glyphs, and more.
8 people found this page helpful
