| Nome del simbolo | Black Florette |
| Versione Unicode | 1.1 |
| Unicode | U+273F |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \273F |
| Codice esadecimale | 0x273F |
| Codice HTML | ✿ |
| LaTeX | \text{BLACKFLORETTE} |
| Simbolo | ✿ |
| Codifica URL (percentuale UTF-8) | %E2%9C%BF |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo black florette sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Black Florette nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |