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