| Nom du symbole | Small Em Dash |
| Version Unicode | 1.1 |
| Unicode | U+FE58 |
| Bloc Unicode | |
| Catégorie générale | Dash Punctuation (Pd) |
| Code CSS | \FE58 |
| Code hexadécimal | 0xFE58 |
| Code HTML | ﹘ |
| LaTeX | \text{SMALLEMDASH} |
| Symbole | ﹘ |
| Encodage URL (pourcent UTF-8) | %EF%B9%98 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole small em dash sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Small Em Dash dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |