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