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