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