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