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