HTML Entity for Double Struck Capital Pi (ℿ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+213F

What You'll Learn

How to display the Double Struck Capital Pi (ℿ) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+213F (DOUBLE-STRUCK CAPITAL PI) in the Letterlike Symbols block (U+2100–U+214F)—the open-face (double-struck) form of Greek capital Pi used in mathematics, set theory, and product notation.

Render it with ℿ, ℿ, or CSS escape \213F. There is no named HTML entity for U+213F. For the regular (non-double-struck) capital Pi use Π or Π (Π). See also math entities.

⚡ Quick Reference — Double Struck Capital Pi

Unicode U+213F

Letterlike Symbols block

Hex Code ℿ

Hexadecimal reference

HTML Code ℿ

Decimal reference

Named Entity

Not available for U+213F

Reference Table
Name           Value
────────────   ──────────
Unicode        U+213F
Hex code       ℿ
HTML code      ℿ
Named entity   —
CSS code       \213F
Related        U+03A0 = Capital Pi (Π)
1

Complete HTML Example

This example demonstrates the Double Struck Capital Pi (ℿ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\213F";
  }
 </style>
</head>
<body>
<p>Double Struck Capital Pi using Hexadecimal: &#x213F;</p>
<p>Double Struck Capital Pi using HTML Code: &#8511;</p>
<p id="point">Double Struck Capital Pi using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+213F is widely supported in modern browsers when rendered with a font that includes Letterlike Symbols:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Double Struck Capital Pi (ℿ) in mathematical notation:

Large glyph
vs regular Pi ℿ double-struck   Π regular
In expression ℿ ∈ ℝ
Named vs numeric &Pi; → Π   &#x213F; → ℿ
Monospace refs &#x213F; &#8511; \213F

🧠 How It Works

1

Hexadecimal Code

&#x213F; uses the Unicode hexadecimal value 213F to display the Double Struck Capital Pi. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8511; uses the decimal Unicode value 8511 to display the same character.

HTML markup
3

CSS Entity

\213F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+213F. Regular capital Pi is &Pi; (Π, U+03A0). No named entity for U+213F.

Use Cases

The Double Struck Capital Pi (ℿ) commonly appears in:

📐 Set theory & math

Product notation, sets, and variables using the double-struck Pi in proofs and expressions.

🔬 Physics & chemistry

Scientific notation and equations where the double-struck Pi denotes a product operator or quantity.

📚 Academic publishing

Textbooks, papers, and course materials requiring letterlike math symbols in HTML.

💻 Math on the web

Equation editors and math rendering alongside other double-struck Greek letters.

📖 Unicode references

Entity lists and guides for Letterlike Symbols (U+2100–U+214F).

♿ Accessibility

Use math-capable fonts so ℿ renders clearly for all readers.

💡 Best Practices

Do

  • Use &#x213F; or &#8511; for ℿ
  • Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
  • Distinguish ℿ (double-struck) from Π (&Pi;, regular)
  • Use \213F only inside CSS content
  • Keep hex or decimal style consistent across the document

Don’t

  • Assume a named entity exists for U+213F—it does not
  • Use &Pi; when you need regular Π, not double-struck ℿ
  • Put CSS escape \213F in HTML text nodes
  • Forget UTF-8 (<meta charset="utf-8">) on math pages
  • Assume every font includes Letterlike Symbols

Key Takeaways

1

No named entity—use numeric references

&#x213F; &#8511;
2

For CSS stylesheets, use the escape in the content property

\213F
3

Unicode U+213F DOUBLE-STRUCK CAPITAL PI

4

Regular Pi: Π via &Pi; or &#x03A0;

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x213F; (hex), &#8511; (decimal), or \213F in CSS content. All produce ℿ. There is no named HTML entity for U+213F.
U+213F (DOUBLE-STRUCK CAPITAL PI). Letterlike Symbols block (U+2100–U+214F). Hex 213F, decimal 8511. Open-face form of Greek capital Pi.
When you need the double-struck capital Pi in mathematical or scientific content: set theory, product notation, expressions, physics, chemistry, or academic notation requiring the open-face Pi symbol.
HTML numeric references (&#8511; or &#x213F;) go in markup. The CSS escape \213F is used in stylesheets, typically in the content property of pseudo-elements.
Letterlike symbols in specialized Unicode blocks typically use numeric codes only. For regular capital Pi use &Pi; (U+03A0, Π)—not the same as ℿ.

Explore More HTML Entities!

Discover 1500+ HTML character references — math symbols, letterlike glyphs, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful