| 記号名 | Figure Dash |
| Unicodeバージョン | 1.1 |
| Unicode | U+2012 |
| Unicodeブロック | |
| 一般カテゴリ | Dash Punctuation (Pd) |
| CSSコード | \2012 |
| 16進コード | 0x2012 |
| HTMLコード | ‒ |
| LaTeX | \text{FIGUREDASH} |
| 記号 | ‒ |
| URLエンコード(UTF-8パーセント) | %E2%80%92 |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでfigure dash記号を入力できます:
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>各プログラミング言語におけるFigure Dash記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |