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