Small Em Dash

Shortcodes

Copy useful codes for small em dash symbol ﹘ to use in websites, apps, blogs, and docs.

Unicode
U+FE58
HTML Code
﹘
HEX Code
﹘
CSS Code
\FE58
JS/JSON
\uFE58
Unix/C/PHP/JAVA
0xFE58
URL-encode
%EF%B9%98

Customize Small Em Dash

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

  

How to use Small Em Dash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>﹘</span>
HTML Code:
<span>&#65112;</span>
HEX Code:
<span>&#xFE58;</span>

Add with CSS

.small-em-dash::before {
  content: '\\FE58';
}

Set it in JavaScript

document.querySelector('.small-em-dash').textContent = '﹘';
copied