| Nome del simbolo | En Dash |
| Versione Unicode | 1.1 |
| Unicode | U+2013 |
| Blocco Unicode | |
| Categoria generale | Dash Punctuation (Pd) |
| Codice CSS | \2013 |
| Codice esadecimale | 0x2013 |
| Codice HTML | – |
| LaTeX | -- |
| Simbolo | – |
| Codifica URL (percentuale UTF-8) | %E2%80%93 |
| Nome parlato / screen reader | En Dash |
| UTF-8 | E2 80 93 |
| UTF-16 | 2013 |
| UTF-32 | 00002013 |
1\documentclass{article}2\usepackage{pifont}3--4\end{document}Puoi digitare il simbolo en dash sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8211 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "en dash", or use Unicode Hex Input with 2013.
Ctrl + Shift + U, type 2013, 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.en-dash::before { content: "\2013"; }1<span>–</span>La rappresentazione del simbolo En Dash nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2013' or String.fromCodePoint(8211) |
| Python | '\N{EN DASH}' or chr(8211) |
| Rust | '\u{2013}' |
| C / C++ | UTF-8 source or wchar_t with U+2013 |
| Go | string(rune(0x2013)) |
| Ruby | "\u{2013}" |