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