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