Left-to-right Override

Shortcodes

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

Unicode
U+202D
HTML Code
‭
HEX Code
‭
CSS Code
\202D
JS/JSON
\u202D
Unix/C/PHP/JAVA
0x202D
URL-encode
%E2%80%AD
copied

Customize Left-to-right Override Symbol

Customize ‭ symbol as you like and download Left-to-right Override 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 Override symbol in HTML, CSS, and JS?

Insert ‭ Left-to-right Override using HTML

1. Copy-paste Left-to-right Override directly:
<span>‭</span>
2. HTML Decimal Code:
<span>&#8237;</span>
3. Hexadecimal Code:
<span>&#x202D;</span>
Preview:

Add Left-to-right Override symbol with CSS

.left-to-right-override::before {
    content: '\\202D';
}
Preview: Left-to-right Override

Left-to-right Override JavaScript Code

1. Direct Symbol:
document.querySelector('.left-to-right-override').textContent = '‭';
2. Unicode Escape for ‭:
document.querySelector('.left-to-right-override').textContent = '\u202D';
Preview: