| Nom du symbole | Top Half Black Circle |
| Version Unicode | 7.0 |
| Unicode | U+2BCA |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2BCA |
| Code hexadécimal | 0x2BCA |
| Code HTML | ⯊ |
| LaTeX | \text{TOPHALFBLACKCIRCLE} |
| Symbole | ⯊ |
| Encodage URL (pourcent UTF-8) | %E2%AF%8A |
| Nom oral / lecteur d’écran | Top Half Black Circle |
| UTF-8 | E2 AF 8A |
| UTF-16 | 2BCA |
| UTF-32 | 00002BCA |
1\documentclass{article}2\usepackage{pifont}3\text{TOPHALFBLACKCIRCLE}4\end{document}Vous pouvez saisir le symbole top half black circle sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 11210 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "top half black circle", or use Unicode Hex Input with 2BCA.
Ctrl + Shift + U, type 2bca, 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.top-half-black-circle::before { content: "\2BCA"; }1<span>⯊</span>La représentation du symbole Top Half Black Circle dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2BCA' or String.fromCodePoint(11210) |
| Python | '\N{TOP HALF BLACK CIRCLE}' or chr(11210) |
| Rust | '\u{2BCA}' |
| C / C++ | UTF-8 source or wchar_t with U+2BCA |
| Go | string(rune(0x2BCA)) |
| Ruby | "\u{2BCA}" |