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