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