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