Pop Directional Formatting

Shortcodes

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

Unicode
U+202C
HTML Code
‬
HEX Code
‬
CSS Code
\202C
JS/JSON
\u202C
Unix/C/PHP/JAVA
0x202C
URL-encode
%E2%80%AC

Customize Pop Directional Formatting

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

  

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

Insert in HTML

1. Direct symbol:
<span>‬</span>
HTML Code:
<span>&#8236;</span>
HEX Code:
<span>&#x202C;</span>

Add with CSS

.pop-directional-formatting::before {
  content: '\\202C';
}

Set it in JavaScript

document.querySelector('.pop-directional-formatting').textContent = '‬';
copied