HTML Entity for Inverted Breve Below (U+032F)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+032F

What Is the Inverted Breve Below Entity?

Inverted Breve Below is the combining diacritic at Unicode U+032F (COMBINING INVERTED BREVE BELOW). It sits below a base letter — common in IPA for non-syllabic vowels (e.g. e̯).

Remember
Mark          combining inverted breve below
Unicode       U+032F
Hex entity    ̯
Decimal       ̯
CSS escape    \032F
Named entity  (none)
Order         base letter + mark  →  e̯

Combining marks are not standalone letters. Write the base character first, then the entity (e.g. e̯ → e̯).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity̯HTML after the base letter
Decimal entity̯HTML after the base letter
CSS escape\032FStylesheet content (often ::after)
Direct characterbase + U+032FUTF-8 HTML text
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need an entity in HTML sourcee̯ or e̯
Generated mark via ::aftercontent: "\032F" on an element that ends with the base letter
UTF-8 page, typing is easyType base + combining mark directly
Looking for a named &...; formDoes not exist — use numeric form
Inverted breve above (U+0311)Different combining character — sits above the letter

Live Preview

Inverted Breve Below combined with base letters (font-dependent).

With vowels e̯ u̯ a̯
Large sample e̯
vs above Below U+032F: e̯  |  Above U+0311: ȏ
Mark alone ̯ (needs a base letter)
With entities e̯ | e̯

Complete HTML Example

One page that shows Inverted Breve Below with hex, decimal, and CSS after a base letter. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to attach U+032F to a base letter.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Inverted Breve Below (U+032F) in HTML</title>
  <style>
    #point::after {
      content: "\032F";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: e&#x032F;</p>
  <p>Using HTML Code: e&#815;</p>
  <p id="point">Using CSS Entity: e</p>
  <p>Typed directly: e̯</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+032F → &#x032F; after the base letter. The browser combines them into e̯.

2. Decimal: same code point as 815 → &#815;. Same result as hex.

3. CSS: use \032F in content (not an HTML entity). #point::after appends the mark below the letter e.

4. Typed: in UTF-8 you can type the base letter and the combining mark directly — same visual result.

Pitfalls & Tips

Common mistakes when working with combining Inverted Breve Below.

Order

Base letter first

Write e&#x032F;, not &#x032F;e. Combining marks follow the base.

Named?

No named entity

HTML5 does not define a named entity for U+032F. Use numeric forms.

CSS vs HTML

Do not mix escapes

\032F belongs in CSS. &#x032F; / &#815; belong in HTML.

Look-alikes

Not U+0311

U+0311 is inverted breve above. U+032F is the below form used in IPA.

Semicolon

End references

Always finish with ; — write &#815;, not &#815.

Fonts

Diacritic support

Use fonts with good below-base combining support (e.g. Charis SIL, DejaVu Sans, Noto Sans).

Browser Support

Combining Inverted Breve Below (U+032F) and its numeric entity forms (&#x032F;, &#815;, CSS \\032F) are supported in all mainstream browsers when the font positions Combining Diacritical Marks correctly.

✓ Universal support

Inverted Breve Below (U+032F)

Encode with hex, decimal, or CSS escape — attach after the base letter for correct combining below.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+032F / entities Full support

Bottom line: Prefer base&#x032F; or base&#815; in HTML. Use \\032F only inside CSS content. Rendering quality depends on the font.

Key Takeaways

  • Unicode: combining inverted breve below is U+032F (decimal 815).
  • HTML: use &#x032F; or &#815; after the base letter.
  • CSS: use \032F inside content for generated marks.
  • Order: always base + mark — never the reverse.

One line: U+032F → e&#x032F; / e&#815; / CSS \032F.

Frequently Asked Questions

Use &#x032F; (hex), &#815; (decimal), or the CSS escape \032F in the content property. There is no named HTML entity. Place the mark immediately after the base letter (e.g. e&#x032F;).
U+032F (COMBINING INVERTED BREVE BELOW). Hex 032F, decimal 815. It belongs to the Combining Diacritical Marks block.
No. HTML5 does not define a named entity for this combining mark. Use numeric references like &#x032F; or &#815;.
Use it in IPA and linguistics for non-syllabic vowels or semivowels (e.g. e̯, u̯). Always write base letter first, then the combining mark.
HTML entities (&#815; or &#x032F;) go in markup after the base character. The CSS escape \032F is used in stylesheets (usually in the content property of ::after). Both apply the combining mark below the letter.
U+0311 sits above the base letter. U+032E is COMBINING BREVE BELOW. U+032F is the inverted breve below — used often in IPA for non-syllabic vowels.

Did you know?

Inverted Breve Below is Unicode U+032F (decimal 815) — COMBINING INVERTED BREVE BELOW. HTML5 has no named entity. Place it after the base letter (e.g. e&#x032F;). Common in IPA for non-syllabic vowels.

Next: Inverted Bridge Below

Learn the HTML entity for combining Inverted Bridge Below (U+033A) — next in this sequence.

Inverted Bridge Below tutorial →

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