| Nome del simbolo | Circled White Star |
| Versione Unicode | 1.1 |
| Unicode | U+272A |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \272A |
| Codice esadecimale | 0x272A |
| Codice HTML | ✪ |
| LaTeX | \text{CIRCLEDWHITESTAR} |
| Simbolo | ✪ |
| Codifica URL (percentuale UTF-8) | %E2%9C%AA |
| Nome parlato / screen reader | Circled White Star |
| UTF-8 | E2 9C AA |
| UTF-16 | 272A |
| UTF-32 | 0000272A |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDWHITESTAR}4\end{document}Puoi digitare il simbolo circled white star sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 10026 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled white star", or use Unicode Hex Input with 272A.
Ctrl + Shift + U, type 272a, 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.circled-white-star::before { content: "\272A"; }1<span>✪</span>La rappresentazione del simbolo Circled White Star nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u272A' or String.fromCodePoint(10026) |
| Python | '\N{CIRCLED WHITE STAR}' or chr(10026) |
| Rust | '\u{272A}' |
| C / C++ | UTF-8 source or wchar_t with U+272A |
| Go | string(rune(0x272A)) |
| Ruby | "\u{272A}" |