HTML Entity for Uppercase E Double Grave (Ȅ)

What You'll Learn
How to display the uppercase E with double grave (Ȅ) in HTML using hexadecimal, decimal, and CSS escape methods. The double grave is a diacritical mark used in Slavic linguistics and phonetic notation for tone or stress. This character is U+0204 in the Latin Extended-B block.
Render it with Ȅ, Ȅ, or CSS escape \204. There is no named HTML entity for this character, so numeric codes or UTF-8 must be used.
⚡ Quick Reference — Uppercase E Double Grave Entity
U+0204Latin Extended-B
ȄHexadecimal reference
ȄDecimal reference
\204Stylesheet escape
Name Value
──────────── ──────────
Unicode U+0204
Hex code Ȅ
HTML code Ȅ
Named entity — (none)
CSS code \204
Meaning Latin capital letter E with double grave
Related U+0205 = lowercase ȅ; È = È (single grave)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase E double grave (Ȅ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\204";
}
</style>
</head>
<body>
<p>Symbol (hex): Ȅ</p>
<p>Symbol (decimal): Ȅ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase E double grave (Ȅ) renders correctly in modern browsers when using numeric entities or UTF-8, though font support for Latin Extended-B varies:
👀 Live Preview
See the uppercase E double grave (Ȅ) and its references:
EÈ, single grave) or plain E🧠 How It Works
Hexadecimal Code
Ȅ uses the Unicode hexadecimal value 204 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȅ uses the decimal Unicode value 516 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\204 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ȅ. Unicode U+0204 sits in Latin Extended-B. Lowercase equivalent: U+0205 (ȅ). There is no named HTML entity. Do not confuse with È (single grave, È).
Use Cases
The uppercase E double grave (Ȅ) is commonly used in:
Tone, stress, or phonetic notation in Slavic language materials and linguistic research.
Websites and apps for Slavic languages or linguistic content requiring Ȅ in headings.
Dictionaries and learning resources showing correct tone with double-grave diacritics.
Scholarly papers and linguistic documentation referencing U+0204.
Headlines and styled text in linguistics or Slavic language contexts.
Documentation, character maps, and encoding tutorials for U+0204.
Tone or stress transcription systems using the double grave diacritic on uppercase E.
💡 Best Practices
Do
- Use
ȄorȄin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ȅ directly in UTF-8 source
- Set appropriate
langattributes for Slavic or linguistic content - Use fonts that support Latin Extended-B diacritics
- Distinguish Ȅ (double grave) from È (single grave) and plain
E
Don’t
- Substitute
È(È) when Ȅ (double grave) is required - Put CSS escape
\204in HTML text nodes - Use padded Unicode notation like U+00204—the correct value is
U+0204 - Use
\00204in CSS—the correct escape is\204 - Assume all fonts render Latin Extended-B double-grave glyphs
Key Takeaways
Three references render Ȅ (no named entity)
Ȅ ȄFor CSS stylesheets, use the escape in the content property
\204Unicode U+0204 — LATIN CAPITAL LETTER E WITH DOUBLE GRAVE
Lowercase pair: U+0205 (ȅ)
Previous: Uppercase E Dot Above (Ė) Next: Uppercase E Grave (È)
❓ Frequently Asked Questions
Ȅ (hex), Ȅ (decimal), or \204 in CSS content. There is no HTML5 named entity for U+0204; numeric references or UTF-8 are required.U+0204 (LATIN CAPITAL LETTER E WITH DOUBLE GRAVE). Latin Extended-B block. Hex 204, decimal 516. Used in Slavic linguistics and phonetic transcription.Ȅ or Ȅ) is used in HTML content. The CSS entity (\204) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȅ but in different contexts.Ȅ, Ȅ, or type Ȅ directly in UTF-8. For single grave, use È (U+00C8) instead.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
