| Nome del simbolo | Shadowed White Circle |
| Versione Unicode | 1.1 |
| Unicode | U+274D |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \274D |
| Codice esadecimale | 0x274D |
| Codice HTML | ❍ |
| LaTeX | \text{SHADOWEDWHITECIRCLE} |
| Simbolo | ❍ |
| Codifica URL (percentuale UTF-8) | %E2%9D%8D |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo shadowed white circle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Shadowed White Circle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |