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