| 記号名 | Latin Small Letter G With Acute |
| Unicodeバージョン | 1.1 |
| Unicode | U+01F5 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \01F5 |
| 16進コード | 0x01F5 |
| HTMLコード | ǵ |
| LaTeX | \text{LATINSMALLLETTERGWITHACUTE} |
| 記号 | ǵ |
| URLエンコード(UTF-8パーセント) | %C7%B5 |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter G With Acute |
| UTF-8 | C7 B5 |
| UTF-16 | 01F5 |
| UTF-32 | 000001F5 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERGWITHACUTE}4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter g with acute記号を入力できます:
Alt + 501 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter g with acute", or use Unicode Hex Input with 01F5.
Ctrl + Shift + U, type 01f5, 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-small-letter-g-with-acute::before { content: "\01F5"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ǵ</span>各プログラミング言語におけるLatin Small Letter G With Acute記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u01F5' or String.fromCodePoint(501) |
| Python | '\N{LATIN SMALL LETTER G WITH ACUTE}' or chr(501) |
| Rust | '\u{01F5}' |
| C / C++ | UTF-8 source or wchar_t with U+01F5 |
| Go | string(rune(0x01F5)) |
| Ruby | "\u{01F5}" |