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