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