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