| Nom du symbole | Hangul Syllable Nud |
| Version Unicode | 2.0 |
| Unicode | U+B20B |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \B20B |
| Code hexadécimal | 0xB20B |
| Code HTML | 눋 |
| LaTeX | \hangul{B20B} |
| Symbole | 눋 |
| Encodage URL (pourcent UTF-8) | %EB%88%8B |
| Nom oral / lecteur d’écran | Hangul Syllable Nud |
| UTF-8 | EB 88 8B |
| UTF-16 | B20B |
| UTF-32 | 0000B20B |
1\documentclass{article}2\usepackage{pifont}3\hangul{B20B}4\end{document}Vous pouvez saisir le symbole hangul syllable nud sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 45579 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable nud", or use Unicode Hex Input with B20B.
Ctrl + Shift + U, type b20b, 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-nud::before { content: "\B20B"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>눋</span>La représentation du symbole Hangul Syllable Nud dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uB20B' or String.fromCodePoint(45579) |
| Python | '\N{HANGUL SYLLABLE NUD}' or chr(45579) |
| Rust | '\u{B20B}' |
| C / C++ | UTF-8 source or wchar_t with U+B20B |
| Go | string(rune(0xB20B)) |
| Ruby | "\u{B20B}" |