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