Bottom Half Integral

Shortcodes

Copy useful codes for bottom half integral symbol ⌡ to use in websites, apps, blogs, and docs.

Unicode
U+2321
Alt Code
245
HTML Code
⌡
HEX Code
⌡
CSS Code
\2321
JS/JSON
\u2321
Unix/C/PHP/JAVA
0x2321
URL-encode
%E2%8C%A1

Customize Bottom Half Integral

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

  

How to use Bottom Half Integral Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌡</span>
HTML Code:
<span>&#8993;</span>
HEX Code:
<span>&#x2321;</span>

Add with CSS

.bottom-half-integral::before {
  content: '\\2321';
}

Set it in JavaScript

document.querySelector('.bottom-half-integral').textContent = '⌡';
copied