Latin Small Letter O With Inverted Breve

ȏ

Shortcodes

Copy useful codes for latin small letter o with inverted breve symbol ȏ to use in websites, apps, blogs, and docs.

Unicode
U+020F
HTML Code
ȏ
HEX Code
ȏ
CSS Code
\020F
JS/JSON
\u020F
Unix/C/PHP/JAVA
0x20F
URL-encode
%C8%8F

Customize Latin Small Letter O With Inverted Breve

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

ȏ
  

How to use Latin Small Letter O With Inverted Breve Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ȏ</span>
HTML Code:
<span>&#527;</span>
HEX Code:
<span>&#x020F;</span>

Add with CSS

.latin-small-letter-o-with-inverted-breve::before {
  content: '\\020F';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-o-with-inverted-breve').textContent = 'ȏ';
copied