Left-to-right Embedding

Shortcodes

Copy and paste codes for Left-to-right Embedding symbol ‪ to use in your websites, apps, blogs, and more.

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

Customize Left-to-right Embedding Symbol

Customize ‪ symbol as you like and download Left-to-right Embedding as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Left-to-right Embedding symbol in HTML, CSS, and JS?

Insert ‪ Left-to-right Embedding using HTML

1. Copy-paste Left-to-right Embedding directly:
<span>‪</span>
2. HTML Decimal Code:
<span>&#8234;</span>
3. Hexadecimal Code:
<span>&#x202A;</span>
Preview:

Add Left-to-right Embedding symbol with CSS

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

Left-to-right Embedding JavaScript Code

1. Direct Symbol:
document.querySelector('.left-to-right-embedding').textContent = '‪';
2. Unicode Escape for ‪:
document.querySelector('.left-to-right-embedding').textContent = '\u202A';
Preview: