| Symboolnaam | En Dash |
| Unicode-versie | 1.1 |
| Unicode | U+2013 |
| Unicode-blok | |
| Algemene categorie | Dash Punctuation (Pd) |
| CSS-code | \2013 |
| Hexadecimale code | 0x2013 |
| HTML-code | – |
| LaTeX | -- |
| Symbool | – |
| URL-codering (UTF-8 procent) | %E2%80%93 |
| Uitgesproken naam / schermlezer | En Dash |
| UTF-8 | E2 80 93 |
| UTF-16 | 2013 |
| UTF-32 | 00002013 |
1\documentclass{article}2\usepackage{pifont}3--4\end{document}Je kunt het en dash-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het En Dash-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |