Latin Capital Letter O With Breve

Ŏ

Shortcodes

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

Unicode
U+014E
HTML Code
Ŏ
HEX Code
Ŏ
CSS Code
\014E
JS/JSON
\u014E
Unix/C/PHP/JAVA
0x14E
URL-encode
%C5%8E

Customize Latin Capital Letter O With Breve

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

Ŏ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŏ</span>
HTML Code:
<span>&#334;</span>
HEX Code:
<span>&#x014E;</span>

Add with CSS

.latin-capital-letter-o-with-breve::before {
  content: '\\014E';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-o-with-breve').textContent = 'Ŏ';
copied