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