N-ary Product

Shortcodes

Copy useful codes for n-ary product symbol ∏ to use in websites, apps, blogs, and docs.

Unicode
U+220F
HTML Code
∏
HEX Code
∏
CSS Code
\220F
JS/JSON
\u220F
Unix/C/PHP/JAVA
0x220F
URL-encode
%E2%88%8F

Customize N-ary Product

Customize ∏, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use N-ary Product Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∏</span>
HTML Code:
<span>&#8719;</span>
HEX Code:
<span>&#x220F;</span>

Add with CSS

.n-ary-product::before {
  content: '\\220F';
}

Set it in JavaScript

document.querySelector('.n-ary-product').textContent = '∏';
copied