| Nom du symbole | Figure Dash |
| Version Unicode | 1.1 |
| Unicode | U+2012 |
| Bloc Unicode | |
| Catégorie générale | Dash Punctuation (Pd) |
| Code CSS | \2012 |
| Code hexadécimal | 0x2012 |
| Code HTML | ‒ |
| LaTeX | \text{FIGUREDASH} |
| Symbole | ‒ |
| Encodage URL (pourcent UTF-8) | %E2%80%92 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole figure dash sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Figure Dash dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |