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