Right-to-left Embedding

Shortcodes

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

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

Customize Right-to-left Embedding

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

  

How to use Right-to-left Embedding Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‫</span>
HTML Code:
<span>&#8235;</span>
HEX Code:
<span>&#x202B;</span>

Add with CSS

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

Set it in JavaScript

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