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