| Nom du symbole | Greek Small Letter Gamma |
| Version Unicode | 1.1 |
| Unicode | U+03B3 |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \03B3 |
| Code hexadécimal | 0x03B3 |
| Code HTML | γ |
| LaTeX | \gamma |
| Symbole | γ |
| Encodage URL (pourcent UTF-8) | %CE%B3 |
| Nom oral / lecteur d’écran | Greek Small Letter Gamma |
| UTF-8 | CE B3 |
| UTF-16 | 03B3 |
| UTF-32 | 000003B3 |
1\documentclass{article}2\usepackage{pifont}3\gamma4\end{document}Vous pouvez saisir le symbole greek small letter gamma sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 947 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter gamma", or use Unicode Hex Input with 03B3.
Ctrl + Shift + U, type 03b3, 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.gamma::before { content: "\03B3"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>γ</span>La représentation du symbole Greek Small Letter Gamma dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u03B3' or String.fromCodePoint(947) |
| Python | '\N{GREEK SMALL LETTER GAMMA}' or chr(947) |
| Rust | '\u{03B3}' |
| C / C++ | UTF-8 source or wchar_t with U+03B3 |
| Go | string(rune(0x03B3)) |
| Ruby | "\u{03B3}" |