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