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