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