Latin Small Letter Open O

ɔ

Shortcodes

Copy useful codes for latin small letter open o symbol ɔ to use in websites, apps, blogs, and docs.

Unicode
U+0254
HTML Code
ɔ
HEX Code
ɔ
CSS Code
\0254
JS/JSON
\u0254
Unix/C/PHP/JAVA
0x254
URL-encode
%C9%94

Customize Latin Small Letter Open O

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

ɔ
  

How to use Latin Small Letter Open O Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ɔ</span>
HTML Code:
<span>&#596;</span>
HEX Code:
<span>&#x0254;</span>

Add with CSS

.latin-small-letter-open-o::before {
  content: '\\0254';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-open-o').textContent = 'ɔ';
copied