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