| Nombre del símbolo | Greek Capital Letter Sigma |
| Versión Unicode | 1.1 |
| Unicode | U+03A3 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \03A3 |
| Código hexadecimal | 0x03A3 |
| Código HTML | Σ |
| LaTeX | \Sigma |
| Símbolo | Σ |
| Codificación URL (porcentaje UTF-8) | %CE%A3 |
| Nombre oral / lector de pantalla | Greek Capital Letter Sigma |
| UTF-8 | CE A3 |
| UTF-16 | 03A3 |
| UTF-32 | 000003A3 |
1\documentclass{article}2\usepackage{pifont}3\Sigma4\end{document}Puedes escribir el símbolo greek capital letter sigma en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Greek Capital Letter Sigma en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |