| Nombre del símbolo | Hangul Syllable Buing |
| Versión Unicode | 2.0 |
| Unicode | U+BE43 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \BE43 |
| Código hexadecimal | 0xBE43 |
| Código HTML | 빃 |
| LaTeX | \hangul{BE43} |
| Símbolo | 빃 |
| Codificación URL (porcentaje UTF-8) | %EB%B9%83 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo hangul syllable buing en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Hangul Syllable Buing en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |