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