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