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