Long Division

Shortcodes

Copy and paste codes for Long Division symbol ⟌ to use in your websites, apps, blogs, and more.

Unicode
U+27CC
HTML Code
⟌
HEX Code
⟌
CSS Code
\27CC
JS/JSON
\u27CC
Unix/C/PHP/JAVA
0x27CC
URL-encode
%E2%9F%8C
copied

Customize Long Division Symbol

Customize ⟌ symbol as you like and download Long Division 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 add Long Division symbol in HTML, CSS, and JS?

Insert ⟌ Long Division using HTML

1. Copy-paste Long Division directly:
<span>⟌</span>
2. HTML Decimal Code:
<span>&#10188;</span>
3. Hexadecimal Code:
<span>&#x27CC;</span>
Preview:

Add Long Division symbol with CSS

.long-division::before {
    content: '\\27CC';
}
Preview: Long Division

Long Division JavaScript Code

1. Direct Symbol:
document.querySelector('.long-division').textContent = '⟌';
2. Unicode Escape for ⟌:
document.querySelector('.long-division').textContent = '\u27CC';
Preview: