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