| Nom du symbole | Hangul Syllable Weog |
| Version Unicode | 2.0 |
| Unicode | U+C6CD |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \C6CD |
| Code hexadécimal | 0xC6CD |
| Code HTML | 웍 |
| LaTeX | \hangul{C6CD} |
| Symbole | 웍 |
| Encodage URL (pourcent UTF-8) | %EC%9B%8D |
| Nom oral / lecteur d’écran | Hangul Syllable Weog |
| UTF-8 | EC 9B 8D |
| UTF-16 | C6CD |
| UTF-32 | 0000C6CD |
1\documentclass{article}2\usepackage{pifont}3\hangul{C6CD}4\end{document}Vous pouvez saisir le symbole hangul syllable weog sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 50893 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable weog", or use Unicode Hex Input with C6CD.
Ctrl + Shift + U, type c6cd, 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-weog::before { content: "\C6CD"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>웍</span>La représentation du symbole Hangul Syllable Weog dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uC6CD' or String.fromCodePoint(50893) |
| Python | '\N{HANGUL SYLLABLE WEOG}' or chr(50893) |
| Rust | '\u{C6CD}' |
| C / C++ | UTF-8 source or wchar_t with U+C6CD |
| Go | string(rune(0xC6CD)) |
| Ruby | "\u{C6CD}" |