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