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