| Nombre del símbolo | Friend Hanzi |
| Versión Unicode | 1.1 |
| Unicode | U+53CB |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \53CB |
| Código hexadecimal | 0x53CB |
| Código HTML | 友 |
| LaTeX | \CJKchar{53CB} |
| Símbolo | 友 |
| Codificación URL (porcentaje UTF-8) | %E5%8F%8B |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo friend hanzi en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Friend Hanzi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |