Left-to-right Embedding

Shortcodes

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

Unicode
U+202A
HTML Code
‪
HEX Code
‪
CSS Code
\202A
JS/JSON
\u202A
Unix/C/PHP/JAVA
0x202A
URL-encode
%E2%80%AA

Customize Left-to-right Embedding

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

  

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

Insert in HTML

1. Direct symbol:
<span>‪</span>
HTML Code:
<span>&#8234;</span>
HEX Code:
<span>&#x202A;</span>

Add with CSS

.left-to-right-embedding::before {
  content: '\\202A';
}

Set it in JavaScript

document.querySelector('.left-to-right-embedding').textContent = '‪';
copied