| Nombre del símbolo | Pinwheel Star |
| Versión Unicode | 1.1 |
| Unicode | U+272F |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \272F |
| Código hexadecimal | 0x272F |
| Código HTML | ✯ |
| LaTeX | \text{PINWHEELSTAR} |
| Símbolo | ✯ |
| Codificación URL (porcentaje UTF-8) | %E2%9C%AF |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo pinwheel star en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Pinwheel Star en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |