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