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