HTML Entity for Lowercase I Inverted Breve (ȋ)

What You'll Learn
How to display the lowercase i with inverted breve (ȋ) in HTML using hexadecimal, decimal, and CSS escape methods. This specialized Latin letter appears in traditional Slavicist notation and in linguistic or academic writing where precise phonetic or prosodic notation is needed. It is U+020B in the Latin Extended-B block.
Render it with ȋ, ȋ, or CSS escape \20B. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase I Inverted Breve Entity
U+020BLatin Extended-B
ȋHexadecimal reference
ȋDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+020B
Hex code ȋ
HTML code ȋ
Named entity (none)
CSS code \20B
Meaning Latin small letter i with inverted breve
Related U+020A = uppercase equivalent (Ȋ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase i inverted breve (ȋ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\20B";
}
</style>
</head>
<body>
<p>Symbol (hex): ȋ</p>
<p>Symbol (decimal): ȋ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase i inverted breve (ȋ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the lowercase i inverted breve (ȋ) and its references:
i in traditional Serbo-Croatian phonology🧠 How It Works
Hexadecimal Code
ȋ uses the Unicode hexadecimal value 20B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȋ uses the decimal Unicode value 523 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\20B 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+020B sits in Latin Extended-B. It decomposes to i (U+0069) + combining inverted breve (U+0311). Uppercase equivalent: U+020A (Ȋ). There is no named HTML entity.
Use Cases
The lowercase i inverted breve (ȋ) is commonly used in:
Traditional Slavicist phonology marking a long falling accent on i (e.g. Serbo-Croatian).
Papers and books using extended Latin letters for precise phonetic or prosodic notation.
Specialized transcription where diacritics encode tone or stress information.
Testing fonts and rendering of uncommon diacritics in Latin Extended-B.
Ensuring correct indexing and exact matching in linguistic applications.
Multilingual and academic content requiring extended Latin symbols.
Lessons and resources teaching specialized diacritics in linguistic materials.
💡 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 linguistic or phonetic content - Use fonts that support Latin Extended-B diacritics
- Distinguish ȋ from ĭ (breve), ì (grave), and ȉ (double grave)
Don’t
- Assume a named entity exists—there is none for ȋ
- Substitute ĭ (breve) when ȋ (inverted breve) is required
- Put CSS escape
\20Bin 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
Three references render ȋ (no named entity)
ȋ ȋFor CSS stylesheets, use the escape in the content property
\20BUnicode U+020B — LATIN SMALL LETTER I WITH INVERTED BREVE
Used in Slavicist notation, linguistics, and academic transcription
Previous: Lowercase I Grave (ì) Next: Lowercase I Latin
❓ Frequently Asked Questions
ȋ (hex), ȋ (decimal), or \20B in CSS content. There is no named HTML entity for this character.U+020B (LATIN SMALL LETTER I WITH INVERTED BREVE). Latin Extended-B block. Hex 20B, decimal 523. It decomposes to i + combining inverted breve (U+0311).ȋ or ȋ in HTML, or \20B in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
