Bottom Half Integral

Shortcodes

Copy and paste codes for Bottom Half Integral symbol ⌡ to use in your websites, apps, blogs, and more.

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
copied

Customize Bottom Half Integral Symbol

Customize ⌡ symbol as you like and download Bottom Half Integral as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to type Bottom Half Integral symbol ⌡ ?

Using Bottom Half Integral Alt Code:

You can type the Bottom Half Integral symbol ⌡ using your keyboard by using the Alt Code for Bottom Half Integral. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 245 using the Numpad.
  3. Release the Alt key.

This will make the ⌡ appear on your screen.

How to add Bottom Half Integral symbol in HTML, CSS, and JS?

Insert ⌡ Bottom Half Integral using HTML

1. Copy-paste Bottom Half Integral directly:
<span>⌡</span>
2. HTML Decimal Code:
<span>&#8993;</span>
3. Hexadecimal Code:
<span>&#x2321;</span>
Preview:

Add Bottom Half Integral symbol with CSS

.bottom-half-integral::before {
    content: '\\2321';
}
Preview: Bottom Half Integral

Bottom Half Integral JavaScript Code

1. Direct Symbol:
document.querySelector('.bottom-half-integral').textContent = '⌡';
2. Unicode Escape for ⌡:
document.querySelector('.bottom-half-integral').textContent = '\u2321';
Preview: