Long Division

Shortcodes

Copy useful codes for long division symbol ⟌ to use in websites, apps, blogs, and docs.

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

Customize Long Division

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

  

How to use Long Division Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟌</span>
HTML Code:
<span>&#10188;</span>
HEX Code:
<span>&#x27CC;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.long-division').textContent = '⟌';
copied