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