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