Clockwise Contour Integral

Shortcodes

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

Unicode
U+2232
HTML Code
∲
HEX Code
∲
CSS Code
\2232
JS/JSON
\u2232
Unix/C/PHP/JAVA
0x2232
URL-encode
%E2%88%B2

Customize Clockwise Contour Integral

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

  

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

Insert in HTML

1. Direct symbol:
<span>∲</span>
HTML Code:
<span>&#8754;</span>
HEX Code:
<span>&#x2232;</span>

Add with CSS

.clockwise-contour-integral::before {
  content: '\\2232';
}

Set it in JavaScript

document.querySelector('.clockwise-contour-integral').textContent = '∲';
copied