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