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