| Symbolname | Hyphen Bullet |
| Unicode-Version | 1.1 |
| Unicode | U+2043 |
| Unicode-Block | |
| Allgemeine Kategorie | Other Punctuation (Po) |
| CSS-Code | \2043 |
| Hexadezimalcode | 0x2043 |
| HTML-Code | ⁃ |
| LaTeX | \text{HYPHENBULLET} |
| Symbol | ⁃ |
| URL-Kodierung (UTF-8-Prozent) | %E2%81%83 |
| Ansagename (Screenreader) | 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}Sie können das Symbol hyphen bullet auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Hyphen Bullet in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |