| Nom du symbole | Big Hanzi |
| Version Unicode | 1.1 |
| Unicode | U+5927 |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \5927 |
| Code hexadécimal | 0x5927 |
| Code HTML | 大 |
| LaTeX | \CJKchar{5927} |
| Symbole | 大 |
| Encodage URL (pourcent UTF-8) | %E5%A4%A7 |
| Nom oral / lecteur d’écran | Big Hanzi |
| UTF-8 | E5 A4 A7 |
| UTF-16 | 5927 |
| UTF-32 | 00005927 |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{5927}4\end{document}Vous pouvez saisir le symbole big hanzi sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 22823 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "big hanzi", or use Unicode Hex Input with 5927.
Ctrl + Shift + U, type 5927, 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-big::before { content: "\\5927"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>大</span>La représentation du symbole Big Hanzi dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u5927' or String.fromCodePoint(22823) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-5927}' or chr(22823) |
| Rust | '\u{5927}' |
| C / C++ | UTF-8 source or wchar_t with U+5927 |
| Go | string(rune(0x5927)) |
| Ruby | "\u{5927}" |