Latin Small Letter O With Breve

ŏ

Shortcodes

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

Unicode
U+014F
HTML Code
ŏ
HEX Code
ŏ
CSS Code
\014F
JS/JSON
\u014F
Unix/C/PHP/JAVA
0x14F
URL-encode
%C5%8F

Customize Latin Small Letter O With Breve

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

ŏ
  

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

Insert in HTML

1. Direct symbol:
<span>ŏ</span>
HTML Code:
<span>&#335;</span>
HEX Code:
<span>&#x014F;</span>

Add with CSS

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

Set it in JavaScript

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