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