| Nombre del símbolo | En Dash |
| Versión Unicode | 1.1 |
| Unicode | U+2013 |
| Bloque Unicode | |
| Categoría general | Dash Punctuation (Pd) |
| Código CSS | \2013 |
| Código hexadecimal | 0x2013 |
| Código HTML | – |
| LaTeX | -- |
| Símbolo | – |
| Codificación URL (porcentaje UTF-8) | %E2%80%93 |
| Nombre oral / lector de pantalla | En Dash |
| UTF-8 | E2 80 93 |
| UTF-16 | 2013 |
| UTF-32 | 00002013 |
1\documentclass{article}2\usepackage{pifont}3--4\end{document}Puedes escribir el símbolo en dash en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo En Dash en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |