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

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

What You'll Learn

How to insert the combining Inverted Breve Below (U+032F) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears below a base letter and is widely used in the International Phonetic Alphabet (IPA) for non-syllabic vowels or semivowels (e.g. , ).

It is U+032F (COMBINING INVERTED BREVE BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ̯, ̯, or CSS \32F. There is no named HTML entity. Do not confuse U+032F (below) with U+0311 (inverted breve above).

⚡ Quick Reference — Inverted Breve Below

Unicode U+032F

Combining Diacritical Marks

Hex Code ̯

Hexadecimal reference

HTML Code ̯

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+032F
Hex code       ̯
HTML code      ̯
Named entity   (none)
CSS code       \32F
Meaning        Combining inverted breve below
Position       Below base letter
IPA example    e̯ (non-syllabic)
Related        U+0311 = inverted breve above
1

Complete HTML Example

This example shows the Inverted Breve Below (U+032F) with base letters using hexadecimal code, decimal HTML code, and a CSS content escape. Always place the combining mark after the base character:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\32F";
  }
 </style>
</head>
<body>
<p>Inverted Breve Below using Hexadecimal: e&#x032F; u&#x032F;</p>
<p>Inverted Breve Below using Decimal: e&#815; a&#815;</p>
<p id="point">Inverted Breve Below using CSS Entity: e</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Inverted Breve Below (U+032F) renders when fonts support Combining Diacritical Marks with correct below-base positioning:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Inverted Breve Below (U+032F) combined with base letters (font-dependent):

IPA sample e̯ u̯ a̯
Mark alone ̯
Above vs below Below U+032F: e̯   Above U+0311: ȏ
Large sample
Numeric refs &#x032F; &#815; \32F

🧠 How It Works

1

Hexadecimal Code

&#x032F; uses the Unicode hexadecimal value 032F. Place it immediately after the base letter in HTML.

HTML markup
2

Decimal HTML Code

&#815; uses the decimal Unicode value 815 for the same combining character.

HTML markup
3

CSS Entity

\32F is used in CSS stylesheets in the content property, often on ::after following a base character in markup.

CSS stylesheet
4

No Named Entity

U+032F has no standard &...; named form. Use hex, decimal, or CSS escape only.

HTML markup
=

Combined rendering

With a suitable font, shows the inverted breve below e. Next: Inverted Bridge Below (U+033A).

Use Cases

The Inverted Breve Below (U+032F) is commonly used in:

🎤 IPA

Non-syllabic vowels and semivowels (e̯, u̯) in transcription.

📝 Phonology

Syllabification and phonological descriptions in research.

📚 Dictionaries

Pronunciation entries and language reference content.

📄 Academic

Phonetics, phonology, and comparative linguistics papers.

🎓 EdTech

Language-learning apps with accurate phonetic spelling.

📐 Below-letter

Any orthography requiring a diacritic under the base glyph.

💡 Best Practices

Do

  • Place &#x032F; or &#815; after the base letter
  • Use IPA fonts (Charis SIL, DejaVu Sans, Doulos SIL)
  • Set <meta charset="utf-8">
  • Pick one numeric style per project
  • Provide IPA or pronunciation context for readers

Don’t

  • Put the combining mark before the base character
  • Confuse U+032F (below) with U+0311 (inverted breve above)
  • Expect a named HTML entity for U+032F
  • Use fonts without Combining Diacritical Marks support
  • Display the mark alone as readable text without a base letter

Key Takeaways

1

Two HTML numeric references plus CSS for U+032F

&#x032F; &#815;
2

For CSS, use \32F in the content property

3

Unicode U+032F — COMBINING INVERTED BREVE BELOW

4

Common in IPA: e&#x032F; for non-syllabic e

❓ Frequently Asked Questions

Use &#x032F; (hex), &#815; (decimal), or \32F in CSS content. There is no named entity. Place the mark immediately after the base letter (e.g. e&#x032F;) so it combines below the character.
U+032F (COMBINING INVERTED BREVE BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 032F, decimal 815. Often marks non-syllabic vowels in IPA.
In IPA and phonetic transcription, linguistic notation, dictionaries, academic phonetics, and language-learning content that requires this mark below a base letter.
HTML references (&#815; or &#x032F;) go in markup after the base character. The CSS escape \32F is used in stylesheets, typically on ::after. Both render the combining mark below the letter.
Named entities cover common characters; combining diacritics in U+0300–U+036F use numeric hex or decimal codes or CSS escapes. That is standard for U+032F.

Explore More HTML Entities!

Discover 1500+ HTML character references — diacritics, IPA symbols, math, 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