Greek Capital Letter Omicron

Ο

Shortcodes

Copy useful codes for greek capital letter omicron symbol Ο to use in websites, apps, blogs, and docs.

Unicode
U+039F
HTML Code
Ο
HEX Code
Ο
CSS Code
\039F
JS/JSON
\u039F
Unix/C/PHP/JAVA
0x039F
URL-encode
%CE%9F

Customize Greek Capital Letter Omicron

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

Ο
  

How to use Greek Capital Letter Omicron Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ο</span>
HTML Code:
<span>&#927;</span>
HEX Code:
<span>&#x39F;</span>

Add with CSS

.greek-capital-letter-omicron::before {
  content: '\\039F';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-omicron').textContent = 'Ο';
copied