N-ary Coproduct

Shortcodes

Copy and paste codes for N-ary Coproduct symbol ∐ to use in your websites, apps, blogs, and more.

Unicode
U+2210
HTML Code
∐
HEX Code
∐
CSS Code
\2210
JS/JSON
\u2210
Unix/C/PHP/JAVA
0x2210
URL-encode
%E2%88%90
copied

Customize N-ary Coproduct Symbol

Customize ∐ symbol as you like and download N-ary Coproduct as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add N-ary Coproduct symbol in HTML, CSS, and JS?

Insert ∐ N-ary Coproduct using HTML

1. Copy-paste N-ary Coproduct directly:
<span>∐</span>
2. HTML Decimal Code:
<span>&#8720;</span>
3. Hexadecimal Code:
<span>&#x2210;</span>
Preview:

Add N-ary Coproduct symbol with CSS

.n-ary-coproduct::before {
    content: '\\2210';
}
Preview: N-ary Coproduct

N-ary Coproduct JavaScript Code

1. Direct Symbol:
document.querySelector('.n-ary-coproduct').textContent = '∐';
2. Unicode Escape for ∐:
document.querySelector('.n-ary-coproduct').textContent = '\u2210';
Preview: