| 記号名 | Hangul Syllable Sag |
| Unicodeバージョン | 2.0 |
| Unicode | U+C0AD |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \C0AD |
| 16進コード | 0xC0AD |
| HTMLコード | 삭 |
| LaTeX | \hangul{C0AD} |
| 記号 | 삭 |
| URLエンコード(UTF-8パーセント) | %EC%82%AD |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでhangul syllable sag記号を入力できます:
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>各プログラミング言語におけるHangul Syllable Sag記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |