| Nombre del símbolo | Black Florette |
| Versión Unicode | 1.1 |
| Unicode | U+273F |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \273F |
| Código hexadecimal | 0x273F |
| Código HTML | ✿ |
| LaTeX | \text{BLACKFLORETTE} |
| Símbolo | ✿ |
| Codificación URL (porcentaje UTF-8) | %E2%9C%BF |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo black florette en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Black Florette en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |