| Nombre del símbolo | Self Hanzi |
| Versión Unicode | 1.1 |
| Unicode | U+81EA |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \81EA |
| Código hexadecimal | 0x81EA |
| Código HTML | 自 |
| LaTeX | \CJKchar{81EA} |
| Símbolo | 自 |
| Codificación URL (porcentaje UTF-8) | %E8%87%AA |
| Nombre oral / lector de pantalla | Self Hanzi |
| UTF-8 | E8 87 AA |
| UTF-16 | 81EA |
| UTF-32 | 000081EA |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{81EA}4\end{document}Puedes escribir el símbolo self hanzi en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 33258 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "self hanzi", or use Unicode Hex Input with 81EA.
Ctrl + Shift + U, type 81ea, 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-freedom::before { content: "\\81EA"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>自</span>La representación del símbolo Self Hanzi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u81EA' or String.fromCodePoint(33258) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-81EA}' or chr(33258) |
| Rust | '\u{81EA}' |
| C / C++ | UTF-8 source or wchar_t with U+81EA |
| Go | string(rune(0x81EA)) |
| Ruby | "\u{81EA}" |