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