HTML Entity for Uppercase E Inverted Breve (Ȇ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0206

What Is Uppercase E Inverted Breve?

Uppercase E with inverted breve (Ȇ) is the Unicode character at U+0206 in Latin Extended-B. Official name: LATIN CAPITAL LETTER E WITH INVERTED BREVE — a capital E with an upside-down breve (an arch that opens downward), used in phonetic and linguistic notation.

Remember
Character     Ȇ
Unicode       U+0206
Named entity  (none)
Hex entity    Ȇ
Decimal       Ȇ
CSS escape    \0206
Not the same  Ĕ · È · ȇ

Prefer Ȇ or Ȇ in HTML markup. You can also type Ȇ in UTF-8. For a normal breve, use &Ebreve; (Ĕ). There is no &Einvertedbreve;.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNoneUse numeric or type the character
Direct characterȆHTML text (UTF-8)
Hex entityȆHTML markup (preferred)
Decimal entityȆHTML markup
CSS escape\0206Stylesheet content
Lowercase pairȇ (U+0207)Numeric only — no named entity

When to Use Which

SituationUse
E with inverted breve (this letter)Ȇ or type Ȇ
E with normal breve (Ĕ)Ĕ (&Ebreve;)
E with grave (È)È (È)
E with macron (Ē)Ē (Ē)
Lowercase e with inverted breveȇ (ȇ)
Generated text via ::before / ::aftercontent: "\0206"

Live Preview

Inverted-breve E rendered alone and next to related letters.

Large glyph Ȇ
Notation Letter Ȇ
Compared Ȇ  |  Ĕ  |  È
Hint Compare: Inverted breve Ȇ | Breve Ĕ | Grave È | Lower ȇ
With entities Hex: Ȇ | Decimal: Ȇ

Complete HTML Example

One page that shows the letter with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce Ȇ, plus the lowercase pair. No named entity exists.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase E Inverted Breve (Ȇ)</title>
  <style>
    #point::after {
      content: "\0206";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x0206;</p>
  <p>Using HTML Code: &#518;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ȇ</p>
  <p>Case pair: &#x0206; / &#x0207;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+0206 → &#x0206; in HTML. Preferred numeric form when you need an entity.

2. Decimal: same code point as 518 → &#518;. Same glyph as hex.

3. CSS: use \0206 in content (not an HTML entity). Prefer the four-digit form so the escape is not ambiguous next to other hex digits. #point::after appends that Ȇ after the paragraph text.

4. Typed / pair: paste Ȇ in UTF-8, or show the case pair with &#x0206; / &#x0207;.

5. No named entity: HTML5 does not define a name for U+0206 — use numeric references or type the character. &Ebreve; is Ĕ, not this letter.

Pitfalls & Tips

Common mistakes when working with U+0206.

vs Ĕ

Not a normal breve

Ĕ (&Ebreve;) opens upward (a short smile). Ȇ is inverted — the arch opens downward. Do not reuse &Ebreve;.

vs È

Not a grave

È (&Egrave;) is a single sloping accent. An inverted breve is a curved arch, not a grave.

Named

No named HTML entity

There is no &Einvertedbreve; for U+0206. Use &#x0206; or &#518;.

CSS

Prefer \0206 over \206

A short escape like \206 can swallow following hex digits. Use \0206 (or end the escape with a space) in CSS strings.

Fonts

Needs Latin Extended-B coverage

Some UI fonts omit rarer Latin Extended-B letters. Prefer a stack with good Latin coverage if the glyph must always show.

A11y

Use real language text

When this letter appears in real words, keep surrounding text and lang accurate so screen readers get useful context.

Browser Support

Uppercase E with inverted breve (U+0206) and its entity forms (&#x0206;, &#518;, CSS \\0206) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Uppercase E Inverted Breve (&#x0206;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

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+0206 / entities Full support

Bottom line: Prefer &#x0206; or &#518; in HTML. Use \\0206 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: E with inverted breve is U+0206 (decimal 518) — glyph Ȇ.
  • HTML: no named entity — use &#x0206; / &#518; / type Ȇ.
  • CSS: use \0206 inside content for generated text.
  • Meaning: Ȇ is inverted breve — not Ĕ (&Ebreve;), not È (&Egrave;).

One line: U+0206 → &#x0206; / &#518; / CSS \0206 (no named entity).

Frequently Asked Questions

Use &#x0206; (hex), &#518; (decimal), type Ȇ directly in UTF-8, or the CSS escape \0206 in content. There is no named HTML entity.
U+0206 (LATIN CAPITAL LETTER E WITH INVERTED BREVE). Hex 0206, decimal 518. It belongs to Latin Extended-B (U+0180–U+024F).
No. Use numeric references &#x0206; or &#518;, or type Ȇ in UTF-8. &Ebreve; is a different letter (Ĕ).
No. Ȇ has an inverted breve (an arch that opens downward). Ĕ is U+0114 (&Ebreve;, a normal breve). È is U+00C8 (&Egrave;, a single grave).
Use it for phonetic or linguistic text that specifically needs E with an inverted breve — not as a substitute for Ĕ or È.
HTML entities (&#518; or &#x0206;) go in markup. The CSS escape \0206 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase E with inverted breve is Unicode U+0206 (decimal 518) — glyph Ȇ in Latin Extended-B (U+0180–U+024F). Official name: LATIN CAPITAL LETTER E WITH INVERTED BREVE. HTML5 has no named entity — use &#x0206; or &#518;. Lowercase pair is U+0207 (ȇ). Used in phonetic and linguistic notation. Do not confuse with breve Ĕ U+0114 (&Ebreve;) or grave È U+00C8 (&Egrave;).

Next: Uppercase E Macron

Learn the HTML entity for uppercase E with macron (U+0112).

Continue 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