Greek Small Letter Sigma

σ

Shortcodes

Copy useful codes for greek small letter sigma symbol σ to use in websites, apps, blogs, and docs.

Unicode
U+03C3
HTML Code
σ
HTML Entity
σ
HEX Code
σ
CSS Code
\03C3
JS/JSON
\u03C3
Unix/C/PHP/JAVA
0x03C3
URL-encode
%CF%83

Customize Greek Small Letter Sigma

Customize σ, download it as SVG or PNG, or copy the generated HTML snippet.

σ
  

How to use Greek Small Letter Sigma Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>σ</span>
HTML Code:
<span>&#963;</span>
HTML Entity:
<span>&sigma;</span>
HEX Code:
<span>&#x3C3;</span>

Add with CSS

.greek-small-letter-sigma::before {
  content: '\\03C3';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-sigma').textContent = 'σ';
copied