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