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