| Nome del simbolo | Triangular Bullet |
| Versione Unicode | 1.1 |
| Unicode | U+2023 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2023 |
| Codice esadecimale | 0x2023 |
| Codice HTML | ‣ |
| LaTeX | \text{TRIANGULARBULLET} |
| Simbolo | ‣ |
| Codifica URL (percentuale UTF-8) | %E2%80%A3 |
| Nome parlato / screen reader | Triangular Bullet |
| UTF-8 | E2 80 A3 |
| UTF-16 | 2023 |
| UTF-32 | 00002023 |
1\documentclass{article}2\usepackage{pifont}3\text{TRIANGULARBULLET}4\end{document}Puoi digitare il simbolo triangular bullet sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8227 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "triangular bullet", or use Unicode Hex Input with 2023.
Ctrl + Shift + U, type 2023, 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.triangular-bullet::before { content: "\2023"; }1<span>‣</span>La rappresentazione del simbolo Triangular Bullet nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2023' or String.fromCodePoint(8227) |
| Python | '\N{TRIANGULAR BULLET}' or chr(8227) |
| Rust | '\u{2023}' |
| C / C++ | UTF-8 source or wchar_t with U+2023 |
| Go | string(rune(0x2023)) |
| Ruby | "\u{2023}" |