HTML Entity for Lowercase O Breve (ŏ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+014F

What You'll Learn

How to display the lowercase o with breve (ŏ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+014F in the Latin Extended-A block. The breve is a curved diacritical mark that indicates a shorter or softer vowel sound, used in Slavic languages and phonetic notation.

Render it with ŏ, ŏ, or CSS escape \014F. There is no named HTML entity for this character. In UTF-8 documents you can also type ŏ directly.

⚡ Quick Reference — Lowercase O Breve Entity

Unicode U+014F

Latin Extended-A

Hex Code ŏ

Hexadecimal reference

HTML Code ŏ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+014F
Hex code       ŏ
HTML code      ŏ
Named entity   (none)
CSS code       \014F
Meaning        Latin small letter o with breve
Related        U+014E = Ŏ (uppercase)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the lowercase o breve (ŏ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\014F";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x014F;</p>
<p>Symbol (decimal): &#335;</p>
<p>Symbol (direct): ŏ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase o breve (ŏ) is supported in all modern browsers as part of Latin Extended-A:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase o breve (ŏ) in language and notation contexts:

Large glyphŏ
Unicode nameLatin small letter o with breve
UsageSlavic orthographies, phonetic notation, linguistics
UppercaseŎ (U+014E) — LATIN CAPITAL LETTER O WITH BREVE
Not the same asǒ (o caron)  |  ó (o acute)  |  o (plain)
Numeric refs&#x014F; &#335; \014F

🧠 How It Works

1

Hexadecimal Code

&#x014F; uses the Unicode hexadecimal value 014F to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#335; uses the decimal Unicode value 335 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ŏ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this extended Latin letter.

HTML markup
4

CSS Entity

\014F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: ŏ. Unicode U+014F sits in Latin Extended-A. Uppercase equivalent: U+014E (Ŏ). Do not confuse with ǒ (o with caron) or ó (o with acute).

Use Cases

The lowercase o breve (ŏ) is commonly used in:

🇪🇼 Slavic Languages

Display text in Belarusian romanization, historical Slavic orthographies, and other languages that use the o with breve.

🎤 Phonetic Notation

Use in phonetic or phonological notation where the breve indicates a short or reduced vowel.

📚 Dictionaries

Show pronunciation or headwords that include ŏ in dictionary and language reference sites.

🌐 Language Learning

Display correct spelling and pronunciation in lessons for languages that use the breve diacritic.

📝 Linguistics

Use in academic papers, textbooks, or documentation on Slavic phonology and diacritical marks.

♿ Accessibility

Using the correct character (U+014F) ensures assistive technologies interpret the o with breve correctly.

🎨 CSS Generated Content

Using \014F 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 (&#x014F; or &#335;) when escaping is required
  • Use \014F in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-A characters (U+0100–U+017F)
  • Distinguish ŏ (breve) from ǒ (caron) and ó (acute)

Don’t

  • Expect a named HTML entity—none exists for ŏ
  • Confuse ŏ (breve) with ǒ (caron), ó (acute), or plain o
  • Combine separate diacritics when the precomposed ŏ is required
  • Put CSS escape \014F in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ŏ directly, or use hex/decimal references

&#x014F; &#335;
2

For CSS stylesheets, use the escape in the content property

\014F
3

Unicode U+014F — LATIN SMALL LETTER O WITH BREVE

4

Slavic languages and phonetics; uppercase is Ŏ (U+014E)

❓ Frequently Asked Questions

Use &#x014F; (hex), &#335; (decimal), or \014F in CSS content. There is no named HTML entity for ŏ. In UTF-8 you can also type ŏ directly.
U+014F (LATIN SMALL LETTER O WITH BREVE). Latin Extended-A block. Hex 014F, decimal 335. Used in Slavic languages and phonetic notation. Uppercase form is U+014E (Ŏ).
When displaying Slavic language text, phonetic transcriptions, linguistics content, dictionaries, language learning sites, or any content that requires the o with breve character.
No. There is no named HTML entity for ŏ. Use numeric codes &#335; or &#x014F;, or the CSS entity \014F. In UTF-8 pages you can type ŏ directly.
HTML code (&#335; or &#x014F;) is used in HTML content; CSS entity \014F is used in stylesheets in the content property of pseudo-elements. Both produce ŏ.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful