| 記号名 | Non-breaking Hyphen |
| Unicodeバージョン | 1.1 |
| Unicode | U+2011 |
| Unicodeブロック | |
| 一般カテゴリ | Dash Punctuation (Pd) |
| CSSコード | \2011 |
| 16進コード | 0x2011 |
| HTMLコード | ‑ |
| LaTeX | \text{NON-BREAKINGHYPHEN} |
| 記号 | ‑ |
| URLエンコード(UTF-8パーセント) | %E2%80%91 |
| 読み上げ名 / スクリーンリーダー | Non-breaking Hyphen |
| UTF-8 | E2 80 91 |
| UTF-16 | 2011 |
| UTF-32 | 00002011 |
1\documentclass{article}2\usepackage{pifont}3\text{NON-BREAKINGHYPHEN}4\end{document}以下の方法でほとんどの最新デバイスでnon-breaking hyphen記号を入力できます:
Alt + 8209 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "non-breaking hyphen", or use Unicode Hex Input with 2011.
Ctrl + Shift + U, type 2011, 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.non-breaking-hyphen::before { content: "\2011"; }1<span>‑</span>各プログラミング言語におけるNon-breaking Hyphen記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2011' or String.fromCodePoint(8209) |
| Python | '\N{NON-BREAKING HYPHEN}' or chr(8209) |
| Rust | '\u{2011}' |
| C / C++ | UTF-8 source or wchar_t with U+2011 |
| Go | string(rune(0x2011)) |
| Ruby | "\u{2011}" |