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