HTML Entity for Sigma (Σ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+03A3

What You'll Learn

How to display Greek Capital Sigma (Σ) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+03A3 (GREEK CAPITAL LETTER SIGMA) in the Greek and Coptic block (U+0370–U+03FF)—essential for mathematics, statistics, Greek letter notation, and scientific content.

Render it with Σ, Σ, the named entity Σ, or CSS \03A3. Do not confuse Σ with N-Ary Summation U+2211 (∑, ∑) or lowercase sigma U+03C3 (σ, σ).

⚡ Quick Reference — Sigma

Unicode U+03A3

Greek and Coptic

Hex Code Σ

Hexadecimal reference

HTML Code Σ

Decimal reference

Named Entity Σ

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+03A3
Hex code       Σ
HTML code      Σ
Named entity   Σ
CSS code       \03A3
Official name  Greek capital letter sigma
Related        U+03C3 = σ (σ lowercase)
               U+2211 = ∑ (∑ summation)
Block          Greek and Coptic (U+0370–U+03FF)
1

Complete HTML Example

A simple example showing Σ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\03A3";
  }
 </style>
</head>
<body>
<p>Sigma (hex): &#x03A3;</p>
<p>Sigma (decimal): &#931;</p>
<p>Sigma (named): &Sigma;</p>
<p id="point">Sigma (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Greek Capital Sigma (Σ) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See Greek Capital Sigma in mathematical and scientific contexts:

Single symbol Σ
Statistics Σ = population standard deviation
Named entity &Sigma; renders as Σ
Not the same as Summation ∑ (&sum;)  |  Lowercase σ (&sigma;)
Numeric refs &#x03A3; &#931; &Sigma; \03A3

🧠 How It Works

1

Hexadecimal Code

&#x03A3; uses Unicode hexadecimal 03A3 to display Greek capital sigma.

HTML markup
2

Decimal HTML Code

&#931; uses decimal Unicode value 931 for the same character.

HTML markup
3

Named Entity

&Sigma; is the standard HTML named entity for U+03A3—readable and widely used in math and science markup.

HTML markup
4

CSS Entity

\03A3 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Greek letter result

All four methods render Σ. Unicode U+03A3 in Greek and Coptic. Next: Sine Wave.

Use Cases

Greek Capital Sigma (Σ) commonly appears in:

📈 Mathematics

Equations, formulas, and notation using the Greek sigma letter.

📊 Statistics

Population standard deviation (Σ) and statistical notation.

📚 Education

Tutorials, textbooks, and learning materials on math and Greek letters.

⚗️ Scientific content

Physics, engineering, and research papers with Greek symbols.

🌐 Greek typography

Greek language content, alphabets, and cultural references.

💻 Web applications

Calculators, STEM tools, and interactive math interfaces.

💡 Best Practices

Do

  • Use &Sigma; for readable HTML source in math content
  • Use &sum; (∑) when you need the summation operator, not the Greek letter
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish capital Σ from lowercase σ
  • Pick one reference style per project for consistency

Don’t

  • Use U+01A9 (Ʃ) or decimal 425—that is not Greek sigma
  • Confuse Σ with summation ∑ or lowercase σ
  • Put CSS escape \03A3 in HTML text nodes
  • Mix &Sigma; and &sigma; without meaning to change case
  • Assume every sigma-shaped symbol is U+03A3

Key Takeaways

1

Four ways to render U+03A3 in HTML and CSS

&#x03A3; &Sigma;
2

Named entity &Sigma; is the most readable option in HTML markup

3

Unicode U+03A3 — GREEK CAPITAL LETTER SIGMA

4

For summation notation use &sum; (U+2211), not necessarily Σ

❓ Frequently Asked Questions

Use &#x03A3; (hex), &#931; (decimal), &Sigma; (named entity), or \03A3 in CSS content. All four render Σ.
U+03A3 (GREEK CAPITAL LETTER SIGMA). Greek and Coptic (U+0370–U+03FF). Hex 03A3, decimal 931, named entity &Sigma;.
No. Σ (U+03A3) is the Greek capital letter sigma. ∑ (U+2211) is N-ARY SUMMATION with entity &sum;. Use &sum; for indexed summation in equations.
For mathematical notation, statistics (e.g. population standard deviation), Greek letter references, scientific formulas, educational content, and STEM web applications.
&Sigma; is Greek capital sigma (U+03A3, Σ). &sigma; is Greek small sigma (U+03C3, σ). They are different characters with different Unicode values.

Explore More HTML Entities!

Discover 1500+ HTML character references — Greek letters, math symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful