HTML Entity for Uppercase E Inverted Breve (Ȇ)

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

What You'll Learn

How to display the uppercase E with inverted breve (Ȇ) in HTML using hexadecimal, decimal, and CSS escape methods. The inverted breve is a curved diacritical mark above the letter, used in phonetic and linguistic notation. This character is U+0206 in the Latin Extended-B block.

Render it with Ȇ, Ȇ, or CSS escape \206. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Uppercase E Inverted Breve Entity

Unicode U+0206

Latin Extended-B

Hex Code Ȇ

Hexadecimal reference

HTML Code Ȇ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0206
Hex code       Ȇ
HTML code      Ȇ
Named entity   (none)
CSS code       \206
Meaning        Latin capital letter E with inverted breve
Related        U+0207 = lowercase equivalent (ȇ)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase E inverted breve (Ȇ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\206";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x206;</p>
<p>Symbol (decimal): &#518;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase E inverted breve (Ȇ) renders correctly in modern browsers when UTF-8 is used:

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

👀 Live Preview

See the uppercase E inverted breve (Ȇ) and its references:

Large glyphȆ
DiacriticInverted breve accent on E
Case pairȆ (U+0206) / ȇ (U+0207)
Not the same asĔ (breve) or plain E
Numeric refs&#x206; &#518; \206

🧠 How It Works

1

Hexadecimal Code

&#x206; uses the Unicode hexadecimal value 206 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#518; uses the decimal Unicode value 518 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Ȇ. Unicode U+0206 sits in Latin Extended-B. Lowercase equivalent: U+0207 (ȇ). There is no named HTML entity. Do not confuse with Ĕ (breve, U+0114).

Use Cases

The uppercase E inverted breve (Ȇ) is commonly used in:

🔤 Linguistics

Dialectology and phonetic notation for tone, stress, or vowel quality.

🌐 Internationalization

Websites and apps for Slavic languages or linguistic research requiring Ȇ.

📚 Language learning

Dictionaries and learning resources showing correct tone with inverted-breve marks.

📄 Publishing

Academic and scholarly content in linguistics or phonetics.

🎨 Typography

Headlines and styled text in linguistics or language-learning contexts.

🔍 Search & SEO

Correct rendering so specialized linguistic content can be found and indexed.

📝 Phonetic transcription

Tone or stress transcription systems using the inverted breve diacritic.

💡 Best Practices

Do

  • Use &#518; or &#x206; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type Ȇ directly in UTF-8 source
  • Set lang attributes for localized linguistic content
  • Use fonts that support Latin Extended-B diacritics
  • Distinguish Ȇ (inverted breve) from Ĕ (breve) and plain E

Don’t

  • Assume a named entity exists—there is none for Ȇ
  • Substitute Ĕ (breve) when Ȇ (inverted breve) is required
  • Put CSS escape \206 in HTML text nodes
  • Assume all fonts render Latin Extended-B inverted-breve glyphs
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Three references render Ȇ (no named entity)

&#x206; &#518;
2

For CSS stylesheets, use the escape in the content property

\206
3

Unicode U+0206 — LATIN CAPITAL LETTER E WITH INVERTED BREVE

4

Used in linguistics, phonetic transcription, and tone notation

❓ Frequently Asked Questions

Use &#x206; (hex), &#518; (decimal), or \206 in CSS content. There is no named HTML entity for this character.
U+0206 (LATIN CAPITAL LETTER E WITH INVERTED BREVE). Latin Extended-B block. Hex 206, decimal 518. Used in phonetic and linguistic notation.
In linguistic content, phonetic transcriptions, tone notation, language learning materials, and internationalized web content that requires this diacritic.
HTML code (&#518; or &#x206;) is used in HTML content. The CSS entity (\206) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȇ but in different contexts.
No. There is no named HTML entity for Ȇ. Use &#518; or &#x206; in HTML, or \206 in CSS. This is standard for many Latin Extended-B characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented 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