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