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