| Nome del simbolo | Hangul Syllable Myubs |
| Versione Unicode | 2.0 |
| Unicode | U+BBBB |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \BBBB |
| Codice esadecimale | 0xBBBB |
| Codice HTML | 뮻 |
| LaTeX | \hangul{BBBB} |
| Simbolo | 뮻 |
| Codifica URL (percentuale UTF-8) | %EB%AE%BB |
| Nome parlato / screen reader | Hangul Syllable Myubs |
| UTF-8 | EB AE BB |
| UTF-16 | BBBB |
| UTF-32 | 0000BBBB |
1\documentclass{article}2\usepackage{pifont}3\hangul{BBBB}4\end{document}Puoi digitare il simbolo hangul syllable myubs sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 48059 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable myubs", or use Unicode Hex Input with BBBB.
Ctrl + Shift + U, type bbbb, 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-myubs::before { content: "\BBBB"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>뮻</span>La rappresentazione del simbolo Hangul Syllable Myubs nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uBBBB' or String.fromCodePoint(48059) |
| Python | '\N{HANGUL SYLLABLE MYUBS}' or chr(48059) |
| Rust | '\u{BBBB}' |
| C / C++ | UTF-8 source or wchar_t with U+BBBB |
| Go | string(rune(0xBBBB)) |
| Ruby | "\u{BBBB}" |