Left-to-right Mark

Shortcodes

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

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
copied

Customize Left-to-right Mark Symbol

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

Insert ‎ Left-to-right Mark using HTML

1. Copy-paste Left-to-right Mark directly:
<span>‎</span>
2. HTML Decimal Code:
<span>&#8206;</span>
3. HTML Entity:
<span>&lrm;</span>
4. Hexadecimal Code:
<span>&#x200E;</span>
Preview:

Add Left-to-right Mark symbol with CSS

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

Left-to-right Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.left-to-right-mark').textContent = '‎';
2. Unicode Escape for ‎:
document.querySelector('.left-to-right-mark').textContent = '\u200E';
Preview: