Contour Integral

Shortcodes

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

Unicode
U+222E
HTML Code
∮
HEX Code
∮
CSS Code
\222E
JS/JSON
\u222E
Unix/C/PHP/JAVA
0x222E
URL-encode
%E2%88%AE

Customize Contour Integral

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

  

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

Insert in HTML

1. Direct symbol:
<span>∮</span>
HTML Code:
<span>&#8750;</span>
HEX Code:
<span>&#x222E;</span>

Add with CSS

.contour-integral::before {
  content: '\\222E';
}

Set it in JavaScript

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