Left-to-right Mark

Shortcodes

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

Unicode
U+200E
HTML Code
‎
HTML Entity
‎
HEX Code
‎
CSS Code
\200E
JS/JSON
\u200E
Unix/C/PHP/JAVA
0x200E
URL-encode
%E2%80%8E

Customize Left-to-right Mark

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

  

How to use Left-to-right Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‎</span>
HTML Code:
<span>&#8206;</span>
HTML Entity:
<span>&lrm;</span>
HEX Code:
<span>&#x200E;</span>

Add with CSS

.left-to-right-mark::before {
  content: '\\200E';
}

Set it in JavaScript

document.querySelector('.left-to-right-mark').textContent = '‎';
copied