Three-em Dash

Shortcodes

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

Unicode
U+2E3B
HTML Code
⸻
HEX Code
⸻
CSS Code
\2E3B
JS/JSON
\u2E3B
Unix/C/PHP/JAVA
0x2E3B
URL-encode
%E2%B8%BB
copied

Customize Three-em Dash Symbol

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

Insert ⸻ Three-em Dash using HTML

1. Copy-paste Three-em Dash directly:
<span>⸻</span>
2. HTML Decimal Code:
<span>&#11835;</span>
3. Hexadecimal Code:
<span>&#x2E3B;</span>
Preview:

Add Three-em Dash symbol with CSS

.three-em-dash::before {
    content: '\\2E3B';
}
Preview: Three-em Dash

Three-em Dash JavaScript Code

1. Direct Symbol:
document.querySelector('.three-em-dash').textContent = '⸻';
2. Unicode Escape for ⸻:
document.querySelector('.three-em-dash').textContent = '\u2E3B';
Preview: