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