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