Summation With Integral

Shortcodes

Copy useful codes for summation with integral symbol ⨋ to use in websites, apps, blogs, and docs.

Unicode
U+2A0B
HTML Code
⨋
HEX Code
⨋
CSS Code
\2A0B
JS/JSON
\u2A0B
Unix/C/PHP/JAVA
0x2A0B
URL-encode
%E2%A8%8B

Customize Summation With Integral

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

  

How to use Summation With Integral Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨋</span>
HTML Code:
<span>&#10763;</span>
HEX Code:
<span>&#x2A0B;</span>

Add with CSS

.summation-with-integral::before {
  content: '\\2A0B';
}

Set it in JavaScript

document.querySelector('.summation-with-integral').textContent = '⨋';
copied