Double-struck N-ary Summation

Shortcodes

Copy and paste codes for Double-struck N-ary Summation symbol ⅀ to use in your websites, apps, blogs, and more.

Unicode
U+2140
HTML Code
⅀
HEX Code
⅀
CSS Code
\2140
JS/JSON
\u2140
Unix/C/PHP/JAVA
0x2140
URL-encode
%E2%85%80
copied

Customize Double-struck N-ary Summation Symbol

Customize ⅀ symbol as you like and download Double-struck N-ary Summation 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 Double-struck N-ary Summation symbol in HTML, CSS, and JS?

Insert ⅀ Double-struck N-ary Summation using HTML

1. Copy-paste Double-struck N-ary Summation directly:
<span>⅀</span>
2. HTML Decimal Code:
<span>&#8512;</span>
3. Hexadecimal Code:
<span>&#x2140;</span>
Preview:

Add Double-struck N-ary Summation symbol with CSS

.double-struck-n-ary-summation::before {
    content: '\\2140';
}
Preview: Double-struck N-ary Summation

Double-struck N-ary Summation JavaScript Code

1. Direct Symbol:
document.querySelector('.double-struck-n-ary-summation').textContent = '⅀';
2. Unicode Escape for ⅀:
document.querySelector('.double-struck-n-ary-summation').textContent = '\u2140';
Preview: