| 記号名 | Pinwheel Star |
| Unicodeバージョン | 1.1 |
| Unicode | U+272F |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \272F |
| 16進コード | 0x272F |
| HTMLコード | ✯ |
| LaTeX | \text{PINWHEELSTAR} |
| 記号 | ✯ |
| URLエンコード(UTF-8パーセント) | %E2%9C%AF |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでpinwheel star記号を入力できます:
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>各プログラミング言語におけるPinwheel Star記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |