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