Right-to-left Override

Shortcodes

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

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

Customize Right-to-left Override

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

  

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

Insert in HTML

1. Direct symbol:
<span>‮</span>
HTML Code:
<span>&#8238;</span>
HEX Code:
<span>&#x202E;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.right-to-left-override').textContent = '‮';
copied