| Nome del simbolo | Fish Hanzi |
| Versione Unicode | 1.1 |
| Unicode | U+9B5A |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \9B5A |
| Codice esadecimale | 0x9B5A |
| Codice HTML | 魚 |
| LaTeX | \CJKchar{9B5A} |
| Simbolo | 魚 |
| Codifica URL (percentuale UTF-8) | %E9%AD%9A |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo fish hanzi sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Fish Hanzi nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |