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