| Nom du symbole | Yang Hanzi |
| Version Unicode | 1.1 |
| Unicode | U+967D |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \967D |
| Code hexadécimal | 0x967D |
| Code HTML | 陽 |
| LaTeX | \CJKchar{967D} |
| Symbole | 陽 |
| Encodage URL (pourcent UTF-8) | %E9%99%BD |
| Nom oral / lecteur d’écran | Yang Hanzi |
| UTF-8 | E9 99 BD |
| UTF-16 | 967D |
| UTF-32 | 0000967D |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{967D}4\end{document}Vous pouvez saisir le symbole yang hanzi sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 38525 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "yang hanzi", or use Unicode Hex Input with 967D.
Ctrl + Shift + U, type 967d, 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-yang::before { content: "\\967D"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>陽</span>La représentation du symbole Yang Hanzi dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u967D' or String.fromCodePoint(38525) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-967D}' or chr(38525) |
| Rust | '\u{967D}' |
| C / C++ | UTF-8 source or wchar_t with U+967D |
| Go | string(rune(0x967D)) |
| Ruby | "\u{967D}" |