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