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