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