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