| Nom du symbole | Circled Bullet |
| Version Unicode | 3.2 |
| Unicode | U+29BF |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \29BF |
| Code hexadécimal | 0x29BF |
| Code HTML | ⦿ |
| LaTeX | \text{CIRCLEDBULLET} |
| Symbole | ⦿ |
| Encodage URL (pourcent UTF-8) | %E2%A6%BF |
| Nom oral / lecteur d’écran | Circled Bullet |
| UTF-8 | E2 A6 BF |
| UTF-16 | 29BF |
| UTF-32 | 000029BF |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDBULLET}4\end{document}Vous pouvez saisir le symbole circled bullet sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 10687 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled bullet", or use Unicode Hex Input with 29BF.
Ctrl + Shift + U, type 29bf, 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.circled-bullet::before { content: "\29BF"; }1<span>⦿</span>La représentation du symbole Circled Bullet dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u29BF' or String.fromCodePoint(10687) |
| Python | '\N{CIRCLED BULLET}' or chr(10687) |
| Rust | '\u{29BF}' |
| C / C++ | UTF-8 source or wchar_t with U+29BF |
| Go | string(rune(0x29BF)) |
| Ruby | "\u{29BF}" |