HTML Entity for N-Ary Summation (∑)

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

What You'll Learn

How to display the N-Ary Summation symbol (∑) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2211 (N-ARY SUMMATION) in the Mathematical Operators block (U+2200–U+22FF)—the operator for the sum of an indexed family of terms in algebra, calculus, statistics, and discrete mathematics.

Render it with the named entity ∑, ∑, ∑, or CSS escape \2211. Pair with N-Ary Product (∏, ∏) in the n-ary operator family—one of the most widely recognized math symbols on the web.

⚡ Quick Reference — N-Ary Summation

Unicode U+2211

Mathematical Operators

Hex Code ∑

Hexadecimal reference

HTML Code ∑

Decimal reference

Named Entity ∑

Most readable in math markup

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2211
Hex code       ∑
HTML code      ∑
Named entity   ∑
CSS code       \2211
Meaning        N-ary summation (indexed addition)
Related        U+220F = product (∏, ∏)
               U+222B = integral (∫, ∫)
1

Complete HTML Example

This example demonstrates the N-Ary Summation (∑) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2211";
  }
 </style>
</head>
<body>
<p>N-Ary Summation using Hexadecimal: &#x2211;</p>
<p>N-Ary Summation using HTML Code: &#8721;</p>
<p>N-Ary Summation using Named Entity: &sum;</p>
<p id="point">N-Ary Summation using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2211 is widely supported wherever Unicode Mathematical Operators render correctly:

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

👀 Live Preview

See the N-Ary Summation (∑) in mathematical notation contexts:

Series n=1 1/n2
Indexed sum iI xi
Large glyph
vs product ∑ summation   ∏ product
Entity refs &sum; &#x2211; &#8721; \2211

🧠 How It Works

1

Named Entity

&sum; is the HTML named entity for N-Ary Summation—often preferred in readable mathematical markup.

HTML markup
2

Hexadecimal Code

&#x2211; uses the Unicode hexadecimal value 2211. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2211 in Mathematical Operators. Related: product ∏ (&prod;).

Use Cases

The N-Ary Summation symbol (∑) is commonly used in:

🔢 Algebra & calculus

Series, partial sums, and additive formulas over indexed terms.

📊 Statistics

Totals, averages, and aggregate measures in data notation.

📚 Academia

Textbooks, papers, and lecture materials across STEM fields.

💻 CS & algorithms

Complexity bounds and loop-cost notation in technical docs.

🎓 Education

Online math courses with web-based formula notation.

🌐 Reference guides

Unicode charts and HTML entity documentation.

💡 Best Practices

Do

  • Use &sum; for readable summation markup
  • Pair with ∏ when documenting n-ary operator families
  • Use fonts that cover Mathematical Operators (Cambria Math, etc.)
  • Add aria-label (e.g. “summation”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &sum; (∑) with Greek capital sigma in other contexts
  • Assume HTML entities perform mathematical computation
  • Put CSS escape \2211 in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ∑

&#x2211; &#8721; &sum;
2

For CSS stylesheets, use the escape in the content property

\2211
3

Unicode U+2211 — N-ARY SUMMATION

4

&sum; is the standard named entity

5

Related: N-Ary Product (∏) and N-Ary Union (⋃)

❓ Frequently Asked Questions

Use &sum; (named), &#x2211; (hex), &#8721; (decimal), or \2211 in CSS content. All produce ∑.
U+2211 (N-ARY SUMMATION). Mathematical Operators block (U+2200–U+22FF). Hex 2211, decimal 8721. Named entity: &sum;.
When documenting sums over indexed terms in algebra, calculus, statistics, discrete math, and academic mathematical content on the web.
∑ (U+2211, &sum;) is the n-ary summation operator. ∏ (U+220F, &prod;) is the n-ary product. They are the standard paired operators for addition and multiplication over indexed families.
HTML entities (&#8721;, &#x2211;, or &sum;) go directly in markup. The CSS escape \2211 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, relations, 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