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