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