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