| 記号名 | Latin Letter Small Capital G |
| Unicodeバージョン | 1.1 |
| Unicode | U+0262 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \0262 |
| 16進コード | 0x0262 |
| HTMLコード | ɢ |
| LaTeX | \text{LATINLETTERSMALLCAPITALG} |
| 記号 | ɢ |
| URLエンコード(UTF-8パーセント) | %C9%A2 |
| 読み上げ名 / スクリーンリーダー | Latin Letter Small Capital G |
| UTF-8 | C9 A2 |
| UTF-16 | 0262 |
| UTF-32 | 00000262 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINLETTERSMALLCAPITALG}4\end{document}以下の方法でほとんどの最新デバイスでlatin letter small capital g記号を入力できます:
Alt + 610 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin letter small capital g", or use Unicode Hex Input with 0262.
Ctrl + Shift + U, type 0262, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-letter-small-capital-g::before { content: "\0262"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ɢ</span>各プログラミング言語におけるLatin Letter Small Capital G記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0262' or String.fromCodePoint(610) |
| Python | '\N{LATIN LETTER SMALL CAPITAL G}' or chr(610) |
| Rust | '\u{0262}' |
| C / C++ | UTF-8 source or wchar_t with U+0262 |
| Go | string(rune(0x0262)) |
| Ruby | "\u{0262}" |