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