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