HTML Entity for Uppercase O Breve (Ŏ)

What You'll Learn
How to display the uppercase O with breve (Ŏ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+014E (LATIN CAPITAL LETTER O WITH BREVE) in the Latin Extended-A block. The breve is a curved diacritical mark used in Slavic languages and phonetic notation.
Render it with Ŏ, Ŏ, or CSS escape \014E. There is no named HTML entity for this character. In UTF-8 documents you can also type Ŏ directly. Do not confuse with Romanian Ă (Ă), which uses breve on A, not O.
⚡ Quick Reference — Uppercase O Breve Entity
U+014ELatin Extended-A
ŎHexadecimal reference
ŎDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+014E
Hex code Ŏ
HTML code Ŏ
Named entity (none)
CSS code \014E
Meaning Latin capital letter O with breve
Related U+014F = ŏ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase O breve (Ŏ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\014E";
}
</style>
</head>
<body>
<p>Symbol (hex): Ŏ</p>
<p>Symbol (decimal): Ŏ</p>
<p>Symbol (direct): Ŏ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase O breve (Ŏ) is supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase O breve (Ŏ) in linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ŏ uses the Unicode hexadecimal value 014E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŏ uses the decimal Unicode value 334 to display the same character. A common method for Latin Extended-A characters.
Direct Character
Type Ŏ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this character.
CSS Entity
\014E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: Ŏ. Unicode U+014E sits in Latin Extended-A. Lowercase equivalent: U+014F (ŏ). Do not confuse with Ă (A breve), Ó (O acute), or plain O.
Use Cases
The uppercase O breve (Ŏ) is commonly used in:
Display text in Belarusian romanization, historical Slavic orthographies, and other languages that use the O with breve.
Use in phonetic or phonological notation where the breve indicates a short or reduced vowel.
Show pronunciation or headwords that include Ŏ in dictionary and language reference sites.
Display correct spelling and pronunciation in lessons for languages that use the breve diacritic on O.
Use in academic papers, textbooks, or documentation on Slavic phonology and diacritical marks.
Using the correct character (U+014E) ensures assistive technologies interpret the O with breve correctly.
Using \014E in the CSS content property to insert Ŏ via pseudo-elements.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type Ŏ directly in UTF-8 source
- Use numeric references (
ŎorŎ) when escaping is required - Use
\014Ein CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-A characters (U+0100–U+017F)
- Distinguish Ŏ (breve) from Ó (acute) and Ǒ (caron)
Don’t
- Expect a named HTML entity—none exists for Ŏ
- Confuse Ŏ (O breve) with Ă (A breve used in Romanian)
- Confuse Ŏ (breve) with Ǒ (caron), Ó (acute), or plain O
- Put CSS escape
\014Ein HTML text nodes - Use
\0014Ein CSS—the correct escape is\014E
Key Takeaways
Type Ŏ directly, or use hex/decimal references
Ŏ ŎFor CSS stylesheets, use the escape in the content property
\014EUnicode U+014E — LATIN CAPITAL LETTER O WITH BREVE
Slavic languages and phonetics; lowercase is ŏ (U+014F)
Previous: Uppercase O Acute (Ó) Next: Uppercase O Caron
❓ Frequently Asked Questions
Ŏ (hex), Ŏ (decimal), or \014E in CSS content. There is no named HTML entity for Ŏ. In UTF-8 you can also type Ŏ directly.U+014E (LATIN CAPITAL LETTER O WITH BREVE). Latin Extended-A block. Hex 014E, decimal 334. Used in Slavic languages and phonetic notation. Lowercase form is U+014F (ŏ).Ŏ or Ŏ, or the CSS entity \014E. In UTF-8 pages you can type Ŏ directly.Ŏ or Ŏ) is used in HTML content; CSS entity \014E is used in stylesheets in the content property of pseudo-elements. Both produce Ŏ.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
