| Nom du symbole | Hangul Syllable Nyalp |
| Version Unicode | 2.0 |
| Unicode | U+B0DE |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \B0DE |
| Code hexadécimal | 0xB0DE |
| Code HTML | 냞 |
| LaTeX | \hangul{B0DE} |
| Symbole | 냞 |
| Encodage URL (pourcent UTF-8) | %EB%83%9E |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole hangul syllable nyalp sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Hangul Syllable Nyalp dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |