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