Anticlockwise Contour Integral

Shortcodes

Copy useful codes for anticlockwise contour integral symbol ∳ to use in websites, apps, blogs, and docs.

Unicode
U+2233
HTML Code
∳
HEX Code
∳
CSS Code
\2233
JS/JSON
\u2233
Unix/C/PHP/JAVA
0x2233
URL-encode
%E2%88%B3

Customize Anticlockwise Contour Integral

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

  

How to use Anticlockwise Contour Integral Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∳</span>
HTML Code:
<span>&#8755;</span>
HEX Code:
<span>&#x2233;</span>

Add with CSS

.anticlockwise-contour-integral::before {
  content: '\\2233';
}

Set it in JavaScript

document.querySelector('.anticlockwise-contour-integral').textContent = '∳';
copied