HTML Entity for Double Struck N-Ary Summation (⅀)

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

What You'll Learn

How to display the Double Struck N-Ary Summation (⅀) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2140 (DOUBLE-STRUCK N-ARY SUMMATION) in the Letterlike Symbols block (U+2100–U+214F)—used in mathematics for n-ary summation (sum over indices).

Render it with ⅀, ⅀, or CSS escape \2140. There is no named HTML entity for U+2140. For regular summation use ∑ or ∑ (∑, U+2211). See also math entities.

⚡ Quick Reference — Double Struck N-Ary Summation

Unicode U+2140

Letterlike Symbols block

Hex Code ⅀

Hexadecimal reference

HTML Code ⅀

Decimal reference

Named Entity

Not available for U+2140

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2140
Hex code       ⅀
HTML code      ⅀
Named entity   —
CSS code       \2140
Related        U+2211 = Summation (∑)
1

Complete HTML Example

This example demonstrates the Double Struck N-Ary Summation (⅀) 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: "\2140";
  }
 </style>
</head>
<body>
<p>Double Struck N-Ary Summation using Hexadecimal: &#x2140;</p>
<p>Double Struck N-Ary Summation using HTML Code: &#8512;</p>
<p id="point">Double Struck N-Ary Summation using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2140 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 N-Ary Summation (⅀) in mathematical notation:

Large glyph
vs regular summation ⅀ n-ary   ∑ regular
No named entity use &#x2140; or &#8512;
Numeric refs &#x2140; &#8512;
CSS escape \2140

🧠 How It Works

1

Hexadecimal Code

&#x2140; uses the Unicode hexadecimal value 2140 to display the Double Struck N-Ary Summation. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2140 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+2140. Regular summation: &sum; (∑, U+2211). No named entity for U+2140.

Use Cases

The Double Struck N-Ary Summation (⅀) commonly appears in:

📐 Series & summation

Mathematics where ⅀ denotes an n-ary sum over indices, series notation, or summation in double-struck style.

🔬 Set theory & algebra

Sum over natural numbers (ℕ) or over a set in formal definitions and proofs using letterlike symbols.

📚 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 italic 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 &#x2140; or &#8512; for ⅀
  • Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
  • Distinguish ⅀ (n-ary) from ∑ (&sum;, regular summation)
  • Use \2140 only inside CSS content
  • Keep entity style consistent across the document

Don’t

  • Assume a named entity exists for U+2140—it does not
  • Use &sum; when you need regular ∑, not n-ary ⅀
  • Put CSS escape \2140 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

&#x2140; &#8512;
2

For CSS stylesheets, use the escape in the content property

\2140
3

Unicode U+2140 DOUBLE-STRUCK N-ARY SUMMATION

4

Regular ∑: U+2211 via &sum; or &#x2211;

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2140; (hex), &#8512; (decimal), or \2140 in CSS content. All produce ⅀. There is no named HTML entity for U+2140.
U+2140 (DOUBLE-STRUCK N-ARY SUMMATION). Letterlike Symbols block (U+2100–U+214F). Hex 2140, decimal 8512. N-ary summation (sum over indices).
When you need the double-struck n-ary summation symbol in mathematical content: series notation, sum over natural numbers, set theory, algebra, or academic papers requiring this letterlike symbol.
HTML numeric references (&#8512; or &#x2140;) go in markup. The CSS escape \2140 is used in stylesheets, typically in the content property of pseudo-elements.
Only some Letterlike Symbols have named entities (e.g. &ii;, &dd;). U+2140 does not. Use &#x2140;, &#8512;, or \2140. For regular summation use &sum; (U+2211, ∑).

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