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