Right-to-left Isolate

Shortcodes

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

Unicode
U+2067
HTML Code
⁧
HEX Code
⁧
CSS Code
\2067
JS/JSON
\u2067
Unix/C/PHP/JAVA
0x2067
URL-encode
%E2%81%A7

Customize Right-to-left Isolate

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

  

How to use Right-to-left Isolate Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁧</span>
HTML Code:
<span>&#8295;</span>
HEX Code:
<span>&#x2067;</span>

Add with CSS

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

Set it in JavaScript

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