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