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