| Symbol Name | Person Hanzi |
| Unicode Version | 1.1 |
| Unicode | U+4EBA |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \4EBA |
| Hex Code | 0x4EBA |
| HTML Code | 人 |
| LaTeX | \CJKchar{4EBA} |
| Symbol | 人 |
| URL encode (UTF-8 percent) | %E4%BA%BA |
| Spoken / screen reader name | 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}You can type the person hanzi symbol on most modern devices with the help of following methods:
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>Person Hanzi symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |