Left-to-right Isolate

Shortcodes

Copy useful codes for left-to-right isolate symbol ⁦ to use in websites, apps, blogs, and docs.

Unicode
U+2066
HTML Code
⁦
HEX Code
⁦
CSS Code
\2066
JS/JSON
\u2066
Unix/C/PHP/JAVA
0x2066
URL-encode
%E2%81%A6

Customize Left-to-right Isolate

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

  

How to use Left-to-right Isolate Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁦</span>
HTML Code:
<span>&#8294;</span>
HEX Code:
<span>&#x2066;</span>

Add with CSS

.left-to-right-isolate::before {
  content: '\\2066';
}

Set it in JavaScript

document.querySelector('.left-to-right-isolate').textContent = '⁦';
copied