| 記号名 | Hangul Syllable Mwemh |
| Unicodeバージョン | 2.0 |
| Unicode | U+BB81 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \BB81 |
| 16進コード | 0xBB81 |
| HTMLコード | 뮁 |
| LaTeX | \hangul{BB81} |
| 記号 | 뮁 |
| URLエンコード(UTF-8パーセント) | %EB%AE%81 |
| 読み上げ名 / スクリーンリーダー | Hangul Syllable Mwemh |
| UTF-8 | EB AE 81 |
| UTF-16 | BB81 |
| UTF-32 | 0000BB81 |
1\documentclass{article}2\usepackage{pifont}3\hangul{BB81}4\end{document}以下の方法でほとんどの最新デバイスでhangul syllable mwemh記号を入力できます:
Alt + 48001 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable mwemh", or use Unicode Hex Input with BB81.
Ctrl + Shift + U, type bb81, 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-mwemh::before { content: "\BB81"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>뮁</span>各プログラミング言語におけるHangul Syllable Mwemh記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uBB81' or String.fromCodePoint(48001) |
| Python | '\N{HANGUL SYLLABLE MWEMH}' or chr(48001) |
| Rust | '\u{BB81}' |
| C / C++ | UTF-8 source or wchar_t with U+BB81 |
| Go | string(rune(0xBB81)) |
| Ruby | "\u{BB81}" |