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