| 記号名 | Eight Pointed Pinwheel Star |
| Unicodeバージョン | 1.1 |
| Unicode | U+2735 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2735 |
| 16進コード | 0x2735 |
| HTMLコード | ✵ |
| LaTeX | \text{EIGHTPOINTEDPINWHEELSTAR} |
| 記号 | ✵ |
| URLエンコード(UTF-8パーセント) | %E2%9C%B5 |
| 読み上げ名 / スクリーンリーダー | Eight Pointed Pinwheel Star |
| UTF-8 | E2 9C B5 |
| UTF-16 | 2735 |
| UTF-32 | 00002735 |
1\documentclass{article}2\usepackage{pifont}3\text{EIGHTPOINTEDPINWHEELSTAR}4\end{document}以下の方法でほとんどの最新デバイスでeight pointed pinwheel star記号を入力できます:
Alt + 10037 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "eight pointed pinwheel star", or use Unicode Hex Input with 2735.
Ctrl + Shift + U, type 2735, 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.eight-pointed-pinwheel-star::before { content: "\2735"; }1<span>✵</span>各プログラミング言語におけるEight Pointed Pinwheel Star記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2735' or String.fromCodePoint(10037) |
| Python | '\N{EIGHT POINTED PINWHEEL STAR}' or chr(10037) |
| Rust | '\u{2735}' |
| C / C++ | UTF-8 source or wchar_t with U+2735 |
| Go | string(rune(0x2735)) |
| Ruby | "\u{2735}" |