Lozenge Divided By Horizontal Rule

Shortcodes

Copy useful codes for lozenge divided by horizontal rule symbol ⟠ to use in websites, apps, blogs, and docs.

Unicode
U+27E0
HTML Code
⟠
HEX Code
⟠
CSS Code
\27E0
JS/JSON
\u27E0
Unix/C/PHP/JAVA
0x27E0
URL-encode
%E2%9F%A0

Customize Lozenge Divided By Horizontal Rule

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

  

How to use Lozenge Divided By Horizontal Rule Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟠</span>
HTML Code:
<span>&#10208;</span>
HEX Code:
<span>&#x27E0;</span>

Add with CSS

.lozenge-divided-by-horizontal-rule::before {
  content: '\\27E0';
}

Set it in JavaScript

document.querySelector('.lozenge-divided-by-horizontal-rule').textContent = '⟠';
copied