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