| Nombre del símbolo | Hangul Syllable Molb |
| Versión Unicode | 2.0 |
| Unicode | U+BAB3 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \BAB3 |
| Código hexadecimal | 0xBAB3 |
| Código HTML | 몳 |
| LaTeX | \hangul{BAB3} |
| Símbolo | 몳 |
| Codificación URL (porcentaje UTF-8) | %EB%AA%B3 |
| Nombre oral / lector de pantalla | Hangul Syllable Molb |
| UTF-8 | EB AA B3 |
| UTF-16 | BAB3 |
| UTF-32 | 0000BAB3 |
1\documentclass{article}2\usepackage{pifont}3\hangul{BAB3}4\end{document}Puedes escribir el símbolo hangul syllable molb en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 47795 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable molb", or use Unicode Hex Input with BAB3.
Ctrl + Shift + U, type bab3, 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-molb::before { content: "\BAB3"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>몳</span>La representación del símbolo Hangul Syllable Molb en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uBAB3' or String.fromCodePoint(47795) |
| Python | '\N{HANGUL SYLLABLE MOLB}' or chr(47795) |
| Rust | '\u{BAB3}' |
| C / C++ | UTF-8 source or wchar_t with U+BAB3 |
| Go | string(rune(0xBAB3)) |
| Ruby | "\u{BAB3}" |