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