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