| 記号名 | Hyphen Bullet |
| Unicodeバージョン | 1.1 |
| Unicode | U+2043 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \2043 |
| 16進コード | 0x2043 |
| HTMLコード | ⁃ |
| LaTeX | \text{HYPHENBULLET} |
| 記号 | ⁃ |
| URLエンコード(UTF-8パーセント) | %E2%81%83 |
| 読み上げ名 / スクリーンリーダー | Hyphen Bullet |
| UTF-8 | E2 81 83 |
| UTF-16 | 2043 |
| UTF-32 | 00002043 |
1\documentclass{article}2\usepackage{pifont}3\text{HYPHENBULLET}4\end{document}以下の方法でほとんどの最新デバイスでhyphen bullet記号を入力できます:
Alt + 8259 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "hyphen bullet", or use Unicode Hex Input with 2043.
Ctrl + Shift + U, type 2043, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with list marker support.
1span.hyphen-bullet::before { content: "\2043"; }1<span>⁃</span>各プログラミング言語におけるHyphen Bullet記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2043' or String.fromCodePoint(8259) |
| Python | '\N{HYPHEN BULLET}' or chr(8259) |
| Rust | '\u{2043}' |
| C / C++ | UTF-8 source or wchar_t with U+2043 |
| Go | string(rune(0x2043)) |
| Ruby | "\u{2043}" |