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