| Nome del simbolo | Person Hanzi |
| Versione Unicode | 1.1 |
| Unicode | U+4EBA |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \4EBA |
| Codice esadecimale | 0x4EBA |
| Codice HTML | 人 |
| LaTeX | \CJKchar{4EBA} |
| Simbolo | 人 |
| Codifica URL (percentuale UTF-8) | %E4%BA%BA |
| Nome parlato / screen reader | Person Hanzi |
| UTF-8 | E4 BA BA |
| UTF-16 | 4EBA |
| UTF-32 | 00004EBA |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{4EBA}4\end{document}Puoi digitare il simbolo person hanzi sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 20154 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "person hanzi", or use Unicode Hex Input with 4EBA.
Ctrl + Shift + U, type 4eba, 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-person::before { content: "\\4EBA"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>人</span>La rappresentazione del simbolo Person Hanzi nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u4EBA' or String.fromCodePoint(20154) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-4EBA}' or chr(20154) |
| Rust | '\u{4EBA}' |
| C / C++ | UTF-8 source or wchar_t with U+4EBA |
| Go | string(rune(0x4EBA)) |
| Ruby | "\u{4EBA}" |