Figure Dash

Shortcodes

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

Unicode
U+2012
HTML Code
‒
HEX Code
‒
CSS Code
\2012
JS/JSON
\u2012
Unix/C/PHP/JAVA
0x2012
URL-encode
%E2%80%92

Customize Figure Dash

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

  

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

Insert in HTML

1. Direct symbol:
<span>‒</span>
HTML Code:
<span>&#8210;</span>
HEX Code:
<span>&#x2012;</span>

Add with CSS

.figure-dash::before {
  content: '\\2012';
}

Set it in JavaScript

document.querySelector('.figure-dash').textContent = '‒';
copied