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