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