En Dash

Shortcodes

Copy useful codes for en dash symbol – to use in websites, apps, blogs, and docs.

Unicode
U+2013
Alt Code
0150
HTML Code
–
HTML Entity
–
HEX Code
–
CSS Code
\2013
JS/JSON
\u2013
Unix/C/PHP/JAVA
0x2013
URL-encode
%E2%80%93

Customize En Dash

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

  

How to use En Dash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>–</span>
HTML Code:
<span>&#8211;</span>
HTML Entity:
<span>&ndash;</span>
HEX Code:
<span>&#x2013;</span>

Add with CSS

.en-dash::before {
  content: '\\2013';
}

Set it in JavaScript

document.querySelector('.en-dash').textContent = '–';
copied