| Nome del simbolo | Hangul Syllable Ssyegs |
| Versione Unicode | 2.0 |
| Unicode | U+C3BF |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \C3BF |
| Codice esadecimale | 0xC3BF |
| Codice HTML | 쎿 |
| LaTeX | \hangul{C3BF} |
| Simbolo | 쎿 |
| Codifica URL (percentuale UTF-8) | %EC%8E%BF |
| Nome parlato / screen reader | Hangul Syllable Ssyegs |
| UTF-8 | EC 8E BF |
| UTF-16 | C3BF |
| UTF-32 | 0000C3BF |
1\documentclass{article}2\usepackage{pifont}3\hangul{C3BF}4\end{document}Puoi digitare il simbolo hangul syllable ssyegs sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 50111 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable ssyegs", or use Unicode Hex Input with C3BF.
Ctrl + Shift + U, type c3bf, 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-ssyegs::before { content: "\C3BF"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>쎿</span>La rappresentazione del simbolo Hangul Syllable Ssyegs nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uC3BF' or String.fromCodePoint(50111) |
| Python | '\N{HANGUL SYLLABLE SSYEGS}' or chr(50111) |
| Rust | '\u{C3BF}' |
| C / C++ | UTF-8 source or wchar_t with U+C3BF |
| Go | string(rune(0xC3BF)) |
| Ruby | "\u{C3BF}" |