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