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