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