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