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