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