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