Omega

Unicode Name: Greek Capital Letter Omega

Ω

Shortcodes

Copy and paste codes for Omega symbol Ω to use in your websites, apps, blogs, and more.

Unicode
U+03A9
HTML Code
Ω
HTML Entity
Ω
HEX Code
Ω
CSS Code
\03A9
JS/JSON
\u03A9
Unix/C/PHP/JAVA
0x03A9
URL-encode
%CE%A9
copied

Customize Omega Symbol

Customize Ω symbol as you like and download Omega 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 Omega symbol in HTML, CSS, and JS?

Insert Ω Omega using HTML

1. Copy-paste Omega directly:
<span>Ω</span>
2. HTML Decimal Code:
<span>&#937;</span>
3. HTML Entity:
<span>&Omega;</span>
4. Hexadecimal Code:
<span>&#x3A9;</span>
Preview: Ω

Add Omega symbol with CSS

.omega::before {
    content: '\\03A9';
}
Preview: Omega

Omega JavaScript Code

1. Direct Symbol:
document.querySelector('.omega').textContent = 'Ω';
2. Unicode Escape for Ω:
document.querySelector('.omega').textContent = '\u03A9';
Preview: Ω