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