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