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