HTML Entity for Uppercase I Inverted Breve (Ȋ)

What You'll Learn
How to display the uppercase I 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+020A in the Latin Extended-B block.
Render it with Ȋ, Ȋ, or CSS escape \20A. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase I Inverted Breve Entity
U+020ALatin Extended-B
ȊHexadecimal reference
ȊDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+020A
Hex code Ȋ
HTML code Ȋ
Named entity (none)
CSS code \20A
Meaning Latin capital letter I with inverted breve
Related U+020B = ȋ (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase I inverted breve (Ȋ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\20A";
}
</style>
</head>
<body>
<p>Symbol (hex): Ȋ</p>
<p>Symbol (decimal): Ȋ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase I inverted breve (Ȋ) renders correctly in modern browsers when UTF-8 is used, though font support for Latin Extended-B varies:
👀 Live Preview
See the uppercase I inverted breve (Ȋ) and its references:
🧠 How It Works
Hexadecimal Code
Ȋ uses the Unicode hexadecimal value 20A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȋ uses the decimal Unicode value 522 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\20A 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+020A sits in Latin Extended-B. Lowercase equivalent: U+020B (ȋ). There is no named HTML entity. Do not confuse with Ĭ (breve, &Ibreve;).
Use Cases
The uppercase I inverted breve (Ȋ) is commonly used in:
Dialectology and phonetic notation for tone, stress, or vowel quality on I.
Websites and apps for Slavic languages or linguistic research requiring Ȋ.
Dictionaries and learning resources showing correct tone with inverted-breve marks.
Scholarly papers and linguistic documentation referencing U+020A.
Headlines and styled text in linguistics or language-learning contexts.
Documentation, character maps, and encoding tutorials for U+020A.
Tone or stress transcription systems using the inverted breve diacritic on I.
💡 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
langattributes for localized linguistic content - Use fonts that support Latin Extended-B diacritics
- Distinguish Ȋ (inverted breve) from Ĭ (breve,
&Ibreve;) and plainI
Don’t
- Assume a named entity exists—there is none for Ȋ
- Substitute
&Ibreve;(Ĭ) when Ȋ (inverted breve) is required - Put CSS escape
\20Ain HTML text nodes - Use padded Unicode notation like U+0020A—the correct value is
U+020A - Use
\0020Ain CSS—the correct escape is\20A
Key Takeaways
Three references render Ȋ (no named entity)
Ȋ ȊFor CSS stylesheets, use the escape in the content property
\20AUnicode U+020A — LATIN CAPITAL LETTER I WITH INVERTED BREVE
Lowercase pair: U+020B (ȋ)
Previous: Uppercase I Grave (Ì) Next: Uppercase I Iota
❓ Frequently Asked Questions
Ȋ (hex), Ȋ (decimal), or \20A in CSS content. There is no named HTML entity for this character.U+020A (LATIN CAPITAL LETTER I WITH INVERTED BREVE). Latin Extended-B block. Hex 20A, decimal 522. Used in phonetic and linguistic notation.Ȋ or Ȋ) is used in HTML content. The CSS entity (\20A) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȋ but in different contexts.&Ibreve;, U+012C).Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
