Right-to-left Override

Shortcodes

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

Unicode
U+202E
HTML Code
‮
HEX Code
‮
CSS Code
\202E
JS/JSON
\u202E
Unix/C/PHP/JAVA
0x202E
URL-encode
%E2%80%AE
copied

Customize Right-to-left Override Symbol

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

Insert ‮ Right-to-left Override using HTML

1. Copy-paste Right-to-left Override directly:
<span>‮</span>
2. HTML Decimal Code:
<span>&#8238;</span>
3. Hexadecimal Code:
<span>&#x202E;</span>
Preview:

Add Right-to-left Override symbol with CSS

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

Right-to-left Override JavaScript Code

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