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