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