| Nombre del símbolo | Hangul Syllable Beolg |
| Versión Unicode | 2.0 |
| Unicode | U+BC8D |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \BC8D |
| Código hexadecimal | 0xBC8D |
| Código HTML | 벍 |
| LaTeX | \hangul{BC8D} |
| Símbolo | 벍 |
| Codificación URL (porcentaje UTF-8) | %EB%B2%8D |
| Nombre oral / lector de pantalla | Hangul Syllable Beolg |
| UTF-8 | EB B2 8D |
| UTF-16 | BC8D |
| UTF-32 | 0000BC8D |
1\documentclass{article}2\usepackage{pifont}3\hangul{BC8D}4\end{document}Puedes escribir el símbolo hangul syllable beolg en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 48269 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable beolg", or use Unicode Hex Input with BC8D.
Ctrl + Shift + U, type bc8d, 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-beolg::before { content: "\BC8D"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>벍</span>La representación del símbolo Hangul Syllable Beolg en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uBC8D' or String.fromCodePoint(48269) |
| Python | '\N{HANGUL SYLLABLE BEOLG}' or chr(48269) |
| Rust | '\u{BC8D}' |
| C / C++ | UTF-8 source or wchar_t with U+BC8D |
| Go | string(rune(0xBC8D)) |
| Ruby | "\u{BC8D}" |