| 記号名 | Hyphen |
| Unicodeバージョン | 1.1 |
| Unicode | U+2010 |
| Unicodeブロック | |
| 一般カテゴリ | Dash Punctuation (Pd) |
| CSSコード | \2010 |
| 16進コード | 0x2010 |
| HTMLコード | ‐ |
| LaTeX | \text{HYPHEN} |
| 記号 | ‐ |
| URLエンコード(UTF-8パーセント) | %E2%80%90 |
| 読み上げ名 / スクリーンリーダー | Hyphen |
| UTF-8 | E2 80 90 |
| UTF-16 | 2010 |
| UTF-32 | 00002010 |
1\documentclass{article}2\usepackage{pifont}3\text{HYPHEN}4\end{document}以下の方法でほとんどの最新デバイスでhyphen記号を入力できます:
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>各プログラミング言語におけるHyphen記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |