| Nombre del símbolo | Small Em Dash |
| Versión Unicode | 1.1 |
| Unicode | U+FE58 |
| Bloque Unicode | |
| Categoría general | Dash Punctuation (Pd) |
| Código CSS | \FE58 |
| Código hexadecimal | 0xFE58 |
| Código HTML | ﹘ |
| LaTeX | \text{SMALLEMDASH} |
| Símbolo | ﹘ |
| Codificación URL (porcentaje UTF-8) | %EF%B9%98 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo small em dash en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Small Em Dash en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |