| Symbol Name | Hangul Syllable Mu |
| Unicode Version | 2.0 |
| Unicode | U+BB34 |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \BB34 |
| Hex Code | 0xBB34 |
| HTML Code | 무 |
| LaTeX | \hangul{BB34} |
| Symbol | 무 |
| URL encode (UTF-8 percent) | %EB%AC%B4 |
| Spoken / screen reader name | Hangul Syllable Mu |
| UTF-8 | EB AC B4 |
| UTF-16 | BB34 |
| UTF-32 | 0000BB34 |
1\documentclass{article}2\usepackage{pifont}3\hangul{BB34}4\end{document}You can type the hangul syllable mu symbol on most modern devices with the help of following methods:
Alt + 47924 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable mu", or use Unicode Hex Input with BB34.
Ctrl + Shift + U, type bb34, 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-mu::before { content: "\BB34"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>무</span>Hangul Syllable Mu symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\uBB34' or String.fromCodePoint(47924) |
| Python | '\N{HANGUL SYLLABLE MU}' or chr(47924) |
| Rust | '\u{BB34}' |
| C / C++ | UTF-8 source or wchar_t with U+BB34 |
| Go | string(rune(0xBB34)) |
| Ruby | "\u{BB34}" |