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