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