Integral Around A Point Operator

Shortcodes

Copy useful codes for integral around a point operator symbol ⨕ to use in websites, apps, blogs, and docs.

Unicode
U+2A15
HTML Code
⨕
HEX Code
⨕
CSS Code
\2A15
JS/JSON
\u2A15
Unix/C/PHP/JAVA
0x2A15
URL-encode
%E2%A8%95

Customize Integral Around A Point Operator

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

  

How to use Integral Around A Point Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨕</span>
HTML Code:
<span>&#10773;</span>
HEX Code:
<span>&#x2A15;</span>

Add with CSS

.integral-around-a-point-operator::before {
  content: '\\2A15';
}

Set it in JavaScript

document.querySelector('.integral-around-a-point-operator').textContent = '⨕';
copied