Greek Small Letter Final Sigma

ς

Shortcodes

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

Unicode
U+03C2
HTML Code
ς
HTML Entity
ς
HEX Code
ς
CSS Code
\03C2
JS/JSON
\u03C2
Unix/C/PHP/JAVA
0x03C2
URL-encode
%CF%82

Customize Greek Small Letter Final Sigma

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

ς
  

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

Insert in HTML

1. Direct symbol:
<span>ς</span>
HTML Code:
<span>&#962;</span>
HTML Entity:
<span>&sigmaf;</span>
HEX Code:
<span>&#x3C2;</span>

Add with CSS

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

Set it in JavaScript

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