Anticlockwise Integration

Shortcodes

Copy useful codes for anticlockwise integration symbol ⨑ to use in websites, apps, blogs, and docs.

Unicode
U+2A11
HTML Code
⨑
HEX Code
⨑
CSS Code
\2A11
JS/JSON
\u2A11
Unix/C/PHP/JAVA
0x2A11
URL-encode
%E2%A8%91

Customize Anticlockwise Integration

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

  

How to use Anticlockwise Integration Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨑</span>
HTML Code:
<span>&#10769;</span>
HEX Code:
<span>&#x2A11;</span>

Add with CSS

.anticlockwise-integration::before {
  content: '\\2A11';
}

Set it in JavaScript

document.querySelector('.anticlockwise-integration').textContent = '⨑';
copied