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