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