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