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