| Nom du symbole | Hangul Syllable Oem |
| Version Unicode | 2.0 |
| Unicode | U+C688 |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \C688 |
| Code hexadécimal | 0xC688 |
| Code HTML | 욈 |
| LaTeX | \hangul{C688} |
| Symbole | 욈 |
| Encodage URL (pourcent UTF-8) | %EC%9A%88 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole hangul syllable oem sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Hangul Syllable Oem dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |