Right-to-left Embedding

Shortcodes

Copy and paste codes for Right-to-left Embedding symbol ‫ to use in your websites, apps, blogs, and more.

Unicode
U+202B
HTML Code
‫
HEX Code
‫
CSS Code
\202B
JS/JSON
\u202B
Unix/C/PHP/JAVA
0x202B
URL-encode
%E2%80%AB
copied

Customize Right-to-left Embedding Symbol

Customize ‫ symbol as you like and download Right-to-left 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 Right-to-left Embedding symbol in HTML, CSS, and JS?

Insert ‫ Right-to-left Embedding using HTML

1. Copy-paste Right-to-left Embedding directly:
<span>‫</span>
2. HTML Decimal Code:
<span>&#8235;</span>
3. Hexadecimal Code:
<span>&#x202B;</span>
Preview:

Add Right-to-left Embedding symbol with CSS

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

Right-to-left Embedding JavaScript Code

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