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