| Nom du symbole | Triangular Bullet |
| Version Unicode | 1.1 |
| Unicode | U+2023 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \2023 |
| Code hexadécimal | 0x2023 |
| Code HTML | ‣ |
| LaTeX | \text{TRIANGULARBULLET} |
| Symbole | ‣ |
| Encodage URL (pourcent UTF-8) | %E2%80%A3 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole triangular bullet sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Triangular Bullet dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |