| Nom du symbole | Flower Hanzi |
| Version Unicode | 1.1 |
| Unicode | U+82B1 |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \82B1 |
| Code hexadécimal | 0x82B1 |
| Code HTML | 花 |
| LaTeX | \CJKchar{82B1} |
| Symbole | 花 |
| Encodage URL (pourcent UTF-8) | %E8%8A%B1 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole flower hanzi sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Flower Hanzi dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |