| Symboolnaam | Hyphen |
| Unicode-versie | 1.1 |
| Unicode | U+2010 |
| Unicode-blok | |
| Algemene categorie | Dash Punctuation (Pd) |
| CSS-code | \2010 |
| Hexadecimale code | 0x2010 |
| HTML-code | ‐ |
| LaTeX | \text{HYPHEN} |
| Symbool | ‐ |
| URL-codering (UTF-8 procent) | %E2%80%90 |
| Uitgesproken naam / schermlezer | Hyphen |
| UTF-8 | E2 80 90 |
| UTF-16 | 2010 |
| UTF-32 | 00002010 |
1\documentclass{article}2\usepackage{pifont}3\text{HYPHEN}4\end{document}Je kunt het hyphen-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8208 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "hyphen", or use Unicode Hex Input with 2010.
Ctrl + Shift + U, type 2010, 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.hyphen::before { content: "\2010"; }1<span>‐</span>De weergave van het Hyphen-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u2010' or String.fromCodePoint(8208) |
| Python | '\N{HYPHEN}' or chr(8208) |
| Rust | '\u{2010}' |
| C / C++ | UTF-8 source or wchar_t with U+2010 |
| Go | string(rune(0x2010)) |
| Ruby | "\u{2010}" |