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