HTML Entity for N-Ary Product (∏)

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

What You'll Learn

How to display the N-Ary Product symbol (∏) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+220F (N-ARY PRODUCT) in the Mathematical Operators block (U+2200–U+22FF)—the operator for the product of an indexed family of terms in algebra, analysis, and combinatorics.

Render it with the named entity ∏, ∏, ∏, or CSS escape \220F. Pair with N-Ary Summation (∑, ∑) in the n-ary operator family, and distinguish it from N-Ary Coproduct (∐, ∐).

⚡ Quick Reference — N-Ary Product

Unicode U+220F

Mathematical Operators

Hex Code ∏

Hexadecimal reference

HTML Code ∏

Decimal reference

Named Entity ∏

Most readable in math markup

Reference Table
Name           Value
────────────   ──────────
Unicode        U+220F
Hex code       ∏
HTML code      ∏
Named entity   ∏
CSS code       \220F
Meaning        N-ary product (indexed multiplication)
Related        U+2211 = summation (∑, ∑)
               U+2210 = coproduct (∐, ∐)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\220F";
  }
 </style>
</head>
<body>
<p>N-Ary Product using Hexadecimal: &#x220F;</p>
<p>N-Ary Product using HTML Code: &#8719;</p>
<p>N-Ary Product using Named Entity: &prod;</p>
<p id="point">N-Ary Product using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+220F 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 Product (∏) in mathematical notation contexts:

Factorial n! = ∏k=1n k
Indexed product iI xi
Large glyph
vs coproduct ∏ product   ∐ coproduct
Entity refs &prod; &#x220F; &#8719; \220F

🧠 How It Works

1

Named Entity

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

HTML markup
2

Hexadecimal Code

&#x220F; uses the Unicode hexadecimal value 220F. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\220F 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+220F in Mathematical Operators. Related: summation ∑ (&sum;).

Use Cases

The N-Ary Product symbol (∏) is commonly used in:

🔢 Algebra

Factorials, permutations, and products over indexed terms.

📊 Analysis

Infinite products and multiplicative series in mathematical texts.

📚 Academia

Textbooks, papers, and lecture notes on mathematics and statistics.

💻 CS & algorithms

Complexity analysis and combinatorial formulas in technical docs.

🎓 Education

Online math courses with web-based formula notation.

🌐 Reference guides

Unicode charts and HTML entity documentation.

💡 Best Practices

Do

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

Don’t

  • Confuse &prod; (∏) with &coprod; (∐)
  • Assume this symbol refers to retail or e-commerce “products”
  • Put CSS escape \220F 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 ∏

&#x220F; &#8719; &prod;
2

For CSS stylesheets, use the escape in the content property

\220F
3

Unicode U+220F — N-ARY PRODUCT

4

&prod; is the standard named entity

5

Related: N-Ary Summation (∑) and N-Ary Coproduct (∐)

❓ Frequently Asked Questions

Use &prod; (named), &#x220F; (hex), &#8719; (decimal), or \220F in CSS content. All produce ∏.
U+220F (N-ARY PRODUCT). Mathematical Operators block (U+2200–U+22FF). Hex 220F, decimal 8719. Named entity: &prod;.
When documenting products over indexed terms in algebra, combinatorics, analysis, and academic mathematical content—not for e-commerce product listings.
∏ (U+220F, &prod;) is the n-ary product operator. ∐ (U+2210, &coprod;) is the n-ary coproduct. They look similar but represent different mathematical operations.
HTML entities (&#8719;, &#x220F;, or &prod;) go directly in markup. The CSS escape \220F 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