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