Greek Small Letter Omega

ω

Shortcodes

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

Unicode
U+03C9
HTML Code
ω
HTML Entity
ω
HEX Code
ω
CSS Code
\03C9
JS/JSON
\u03C9
Unix/C/PHP/JAVA
0x03C9
URL-encode
%CF%89

Customize Greek Small Letter Omega

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

ω
  

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

Insert in HTML

1. Direct symbol:
<span>ω</span>
HTML Code:
<span>&#969;</span>
HTML Entity:
<span>&omega;</span>
HEX Code:
<span>&#x3C9;</span>

Add with CSS

.greek-small-letter-omega::before {
  content: '\\03C9';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-omega').textContent = 'ω';
copied