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