| 記号名 | Hangul Syllable Chyan |
| Unicodeバージョン | 2.0 |
| Unicode | U+CC64 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \CC64 |
| 16進コード | 0xCC64 |
| HTMLコード | 챤 |
| LaTeX | \hangul{CC64} |
| 記号 | 챤 |
| URLエンコード(UTF-8パーセント) | %EC%B1%A4 |
| 読み上げ名 / スクリーンリーダー | Hangul Syllable Chyan |
| UTF-8 | EC B1 A4 |
| UTF-16 | CC64 |
| UTF-32 | 0000CC64 |
1\documentclass{article}2\usepackage{pifont}3\hangul{CC64}4\end{document}以下の方法でほとんどの最新デバイスでhangul syllable chyan記号を入力できます:
Alt + 52324 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable chyan", or use Unicode Hex Input with CC64.
Ctrl + Shift + U, type cc64, then Enter (layout-dependent), or use an IBus Hangul table.
Paste from this page, use text replacement, or pick from the Korean keyboard.
Paste from this page or use a keyboard with Hangul support.
1span.korean-syllable-chyan::before { content: "\CC64"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>챤</span>各プログラミング言語におけるHangul Syllable Chyan記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uCC64' or String.fromCodePoint(52324) |
| Python | '\N{HANGUL SYLLABLE CHYAN}' or chr(52324) |
| Rust | '\u{CC64}' |
| C / C++ | UTF-8 source or wchar_t with U+CC64 |
| Go | string(rune(0xCC64)) |
| Ruby | "\u{CC64}" |