| Symbol Name | Hangul Syllable Sig |
| Unicode Version | 2.0 |
| Unicode | U+C2DD |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \C2DD |
| Hex Code | 0xC2DD |
| HTML Code | 식 |
| LaTeX | \hangul{C2DD} |
| Symbol | 식 |
| URL encode (UTF-8 percent) | %EC%8B%9D |
| Spoken / screen reader name | Hangul Syllable Sig |
| UTF-8 | EC 8B 9D |
| UTF-16 | C2DD |
| UTF-32 | 0000C2DD |
1\documentclass{article}2\usepackage{pifont}3\hangul{C2DD}4\end{document}You can type the hangul syllable sig symbol on most modern devices with the help of following methods:
Alt + 49885 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable sig", or use Unicode Hex Input with C2DD.
Ctrl + Shift + U, type c2dd, 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-sig::before { content: "\C2DD"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>식</span>Hangul Syllable Sig symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\uC2DD' or String.fromCodePoint(49885) |
| Python | '\N{HANGUL SYLLABLE SIG}' or chr(49885) |
| Rust | '\u{C2DD}' |
| C / C++ | UTF-8 source or wchar_t with U+C2DD |
| Go | string(rune(0xC2DD)) |
| Ruby | "\u{C2DD}" |