| 記号名 | Hangul Syllable Yes |
| Unicodeバージョン | 2.0 |
| Unicode | U+C621 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \C621 |
| 16進コード | 0xC621 |
| HTMLコード | 옡 |
| LaTeX | \hangul{C621} |
| 記号 | 옡 |
| URLエンコード(UTF-8パーセント) | %EC%98%A1 |
| 読み上げ名 / スクリーンリーダー | Hangul Syllable Yes |
| UTF-8 | EC 98 A1 |
| UTF-16 | C621 |
| UTF-32 | 0000C621 |
1\documentclass{article}2\usepackage{pifont}3\hangul{C621}4\end{document}以下の方法でほとんどの最新デバイスでhangul syllable yes記号を入力できます:
Alt + 50721 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable yes", or use Unicode Hex Input with C621.
Ctrl + Shift + U, type c621, 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-yes::before { content: "\C621"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>옡</span>各プログラミング言語におけるHangul Syllable Yes記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uC621' or String.fromCodePoint(50721) |
| Python | '\N{HANGUL SYLLABLE YES}' or chr(50721) |
| Rust | '\u{C621}' |
| C / C++ | UTF-8 source or wchar_t with U+C621 |
| Go | string(rune(0xC621)) |
| Ruby | "\u{C621}" |