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