Two-em Dash

Shortcodes

Copy and paste codes for Two-em Dash symbol ⸺ to use in your websites, apps, blogs, and more.

Unicode
U+2E3A
HTML Code
⸺
HEX Code
⸺
CSS Code
\2E3A
JS/JSON
\u2E3A
Unix/C/PHP/JAVA
0x2E3A
URL-encode
%E2%B8%BA
copied

Customize Two-em Dash Symbol

Customize ⸺ symbol as you like and download Two-em Dash 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 Two-em Dash symbol in HTML, CSS, and JS?

Insert ⸺ Two-em Dash using HTML

1. Copy-paste Two-em Dash directly:
<span>⸺</span>
2. HTML Decimal Code:
<span>&#11834;</span>
3. Hexadecimal Code:
<span>&#x2E3A;</span>
Preview:

Add Two-em Dash symbol with CSS

.two-em-dash::before {
    content: '\\2E3A';
}
Preview: Two-em Dash

Two-em Dash JavaScript Code

1. Direct Symbol:
document.querySelector('.two-em-dash').textContent = '⸺';
2. Unicode Escape for ⸺:
document.querySelector('.two-em-dash').textContent = '\u2E3A';
Preview: