| Nome del simbolo | Circled White Bullet |
| Versione Unicode | 3.2 |
| Unicode | U+29BE |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \29BE |
| Codice esadecimale | 0x29BE |
| Codice HTML | ⦾ |
| LaTeX | \text{CIRCLEDWHITEBULLET} |
| Simbolo | ⦾ |
| Codifica URL (percentuale UTF-8) | %E2%A6%BE |
| Nome parlato / screen reader | Circled White Bullet |
| UTF-8 | E2 A6 BE |
| UTF-16 | 29BE |
| UTF-32 | 000029BE |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDWHITEBULLET}4\end{document}Puoi digitare il simbolo circled white bullet sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 10686 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled white bullet", or use Unicode Hex Input with 29BE.
Ctrl + Shift + U, type 29be, 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.circled-white-bullet::before { content: "\29BE"; }1<span>⦾</span>La rappresentazione del simbolo Circled White Bullet nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u29BE' or String.fromCodePoint(10686) |
| Python | '\N{CIRCLED WHITE BULLET}' or chr(10686) |
| Rust | '\u{29BE}' |
| C / C++ | UTF-8 source or wchar_t with U+29BE |
| Go | string(rune(0x29BE)) |
| Ruby | "\u{29BE}" |