HTML Entity for Double Struck Capital Gamma (ℾ)

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

What You'll Learn

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

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

⚡ Quick Reference — Double Struck Capital Gamma

Unicode U+213E

Letterlike Symbols block

Hex Code ℾ

Hexadecimal reference

HTML Code ℾ

Decimal reference

Named Entity

Not available for U+213E

Reference Table
Name           Value
────────────   ──────────
Unicode        U+213E
Hex code       ℾ
HTML code      ℾ
Named entity   —
CSS code       \213E
Related        U+0393 = Capital Gamma (Γ)
1

Complete HTML Example

This example demonstrates the Double Struck Capital Gamma (ℾ) 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: "\213E";
  }
 </style>
</head>
<body>
<p>Double Struck Capital Gamma using Hexadecimal: &#x213E;</p>
<p>Double Struck Capital Gamma using HTML Code: &#8510;</p>
<p id="point">Double Struck Capital Gamma using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+213E 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 Gamma (ℾ) in mathematical notation:

Large glyph
vs regular Gamma ℾ double-struck   Γ regular
In expression ℾ ∈ ℝ
Named vs numeric &Gamma; → Γ   &#x213E; → ℾ
Monospace refs &#x213E; &#8510; \213E

🧠 How It Works

1

Hexadecimal Code

&#x213E; uses the Unicode hexadecimal value 213E to display the Double Struck Capital Gamma. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\213E 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+213E. Regular capital Gamma is &Gamma; (Γ, U+0393). No named entity for U+213E.

Use Cases

The Double Struck Capital Gamma (ℾ) commonly appears in:

📐 Set theory & math

Notation for sets, spaces, or variables using the double-struck Gamma in proofs and expressions.

🔬 Physics & chemistry

Scientific notation and equations where the double-struck Gamma denotes a specific 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 &#x213E; or &#8510; for ℾ
  • Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
  • Distinguish ℾ (double-struck) from Γ (&Gamma;, regular)
  • Use \213E only inside CSS content
  • Keep hex or decimal style consistent across the document

Don’t

  • Assume a named entity exists for U+213E—it does not
  • Use &Gamma; when you need double-struck ℾ
  • Put CSS escape \213E 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

&#x213E; &#8510;
2

For CSS stylesheets, use the escape in the content property

\213E
3

Unicode U+213E DOUBLE-STRUCK CAPITAL GAMMA

4

Regular Gamma: Γ via &Gamma; or &#x0393;

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x213E; (hex), &#8510; (decimal), or \213E in CSS content. All produce ℾ. There is no named HTML entity for U+213E.
U+213E (DOUBLE-STRUCK CAPITAL GAMMA). Letterlike Symbols block (U+2100–U+214F). Hex 213E, decimal 8510. Open-face form of Greek capital Gamma.
When you need the double-struck capital Gamma in mathematical or scientific content: set theory, expressions, physics, chemistry, or academic notation requiring the open-face Gamma symbol.
HTML numeric references (&#8510; or &#x213E;) go in markup. The CSS escape \213E 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 Gamma use &Gamma; (U+0393, Γ)—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