| Symbol Name | Small Em Dash |
| Unicode Version | 1.1 |
| Unicode | U+FE58 |
| Unicode block | |
| General category | Dash Punctuation (Pd) |
| CSS Code | \FE58 |
| Hex Code | 0xFE58 |
| HTML Code | ﹘ |
| LaTeX | \text{SMALLEMDASH} |
| Symbol | ﹘ |
| URL encode (UTF-8 percent) | %EF%B9%98 |
| Spoken / screen reader name | Small Em Dash |
| UTF-8 | EF B9 98 |
| UTF-16 | FE58 |
| UTF-32 | 0000FE58 |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLEMDASH}4\end{document}You can type the small em dash symbol on most modern devices with the help of following methods:
Alt + 65112 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "small em dash", or use Unicode Hex Input with FE58.
Ctrl + Shift + U, type fe58, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.small-em-dash::before { content: "\FE58"; }1<span>﹘</span>Small Em Dash symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\uFE58' or String.fromCodePoint(65112) |
| Python | '\N{SMALL EM DASH}' or chr(65112) |
| Rust | '\u{FE58}' |
| C / C++ | UTF-8 source or wchar_t with U+FE58 |
| Go | string(rune(0xFE58)) |
| Ruby | "\u{FE58}" |