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