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