| Nome del simbolo | Hyphen Bullet |
| Versione Unicode | 1.1 |
| Unicode | U+2043 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2043 |
| Codice esadecimale | 0x2043 |
| Codice HTML | ⁃ |
| LaTeX | \text{HYPHENBULLET} |
| Simbolo | ⁃ |
| Codifica URL (percentuale UTF-8) | %E2%81%83 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo hyphen bullet sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Hyphen Bullet nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |