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