| Nome del simbolo | Flower Hanzi |
| Versione Unicode | 1.1 |
| Unicode | U+82B1 |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \82B1 |
| Codice esadecimale | 0x82B1 |
| Codice HTML | 花 |
| LaTeX | \CJKchar{82B1} |
| Simbolo | 花 |
| Codifica URL (percentuale UTF-8) | %E8%8A%B1 |
| Nome parlato / screen reader | Flower Hanzi |
| UTF-8 | E8 8A B1 |
| UTF-16 | 82B1 |
| UTF-32 | 000082B1 |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{82B1}4\end{document}Puoi digitare il simbolo flower hanzi sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 33457 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "flower hanzi", or use Unicode Hex Input with 82B1.
Ctrl + Shift + U, type 82b1, then Enter (layout-dependent), or use an IBus CJK table.
Paste from this page, use text replacement, or pick from a Japanese/Chinese keyboard.
Paste from this page or use a keyboard with CJK ideograph support.
1span.cjk-flower::before { content: "\\82B1"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>花</span>La rappresentazione del simbolo Flower Hanzi nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u82B1' or String.fromCodePoint(33457) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-82B1}' or chr(33457) |
| Rust | '\u{82B1}' |
| C / C++ | UTF-8 source or wchar_t with U+82B1 |
| Go | string(rune(0x82B1)) |
| Ruby | "\u{82B1}" |