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