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