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