| Nome del simbolo | Small Em Dash |
| Versione Unicode | 1.1 |
| Unicode | U+FE58 |
| Blocco Unicode | |
| Categoria generale | Dash Punctuation (Pd) |
| Codice CSS | \FE58 |
| Codice esadecimale | 0xFE58 |
| Codice HTML | ﹘ |
| LaTeX | \text{SMALLEMDASH} |
| Simbolo | ﹘ |
| Codifica URL (percentuale UTF-8) | %EF%B9%98 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo small em dash sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Small Em Dash nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |