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