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