Three-em Dash

Shortcodes

Copy useful codes for three-em dash symbol ⸻ to use in websites, apps, blogs, and docs.

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

Customize Three-em Dash

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

  

How to use Three-em Dash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸻</span>
HTML Code:
<span>&#11835;</span>
HEX Code:
<span>&#x2E3B;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.three-em-dash').textContent = '⸻';
copied