Sigma Symbol

Unicode Name: Greek Capital Letter Sigma

Σ

Shortcodes

Copy and paste codes for Sigma Symbol Σ to use in your websites, apps, blogs, and more.

Unicode
U+03A3
HTML Code
Σ
HTML Entity
Σ
HEX Code
Σ
CSS Code
\03A3
JS/JSON
\u03A3
Unix/C/PHP/JAVA
0x03A3
URL-encode
%CE%A3
copied

Customize Sigma Symbol Symbol

Customize Σ symbol as you like and download Sigma Symbol as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
Σ

                        
                    

How to add Sigma Symbol in HTML, CSS, and JS?

Insert Σ Sigma Symbol using HTML

1. Copy-paste Sigma Symbol directly:
<span>Σ</span>
2. HTML Decimal Code:
<span>&#931;</span>
3. HTML Entity:
<span>&Sigma;</span>
4. Hexadecimal Code:
<span>&#x3A3;</span>
Preview: Σ

Add Sigma Symbol with CSS

.sigma::before {
    content: '\\03A3';
}
Preview: Sigma Symbol

Sigma Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.sigma').textContent = 'Σ';
2. Unicode Escape for Σ:
document.querySelector('.sigma').textContent = '\u03A3';
Preview: Σ