Pop Directional Isolate

Shortcodes

Copy useful codes for pop directional isolate symbol ⁩ to use in websites, apps, blogs, and docs.

Unicode
U+2069
HTML Code
⁩
HEX Code
⁩
CSS Code
\2069
JS/JSON
\u2069
Unix/C/PHP/JAVA
0x2069
URL-encode
%E2%81%A9

Customize Pop Directional Isolate

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

  

How to use Pop Directional Isolate Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁩</span>
HTML Code:
<span>&#8297;</span>
HEX Code:
<span>&#x2069;</span>

Add with CSS

.pop-directional-isolate::before {
  content: '\\2069';
}

Set it in JavaScript

document.querySelector('.pop-directional-isolate').textContent = '⁩';
copied