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