HTML Entity for Lowercase I Double Grave (ȉ)

What You'll Learn
How to display the lowercase i with double grave (ȉ) in HTML using hexadecimal, decimal, and CSS escape methods. This specialized Latin letter appears in linguistic descriptions, tone-marking systems, and phonetic or academic writing where precise notation matters. It is U+0209 in the Latin Extended-B block.
Render it with ȉ, ȉ, or CSS escape \209. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase I Double Grave Entity
U+0209Latin Extended-B
ȉHexadecimal reference
ȉDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0209
Hex code ȉ
HTML code ȉ
Named entity (none)
CSS code \209
Meaning Latin small letter i with double grave
Related U+0208 = uppercase equivalent (Ȉ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase i double grave (ȉ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\209";
}
</style>
</head>
<body>
<p>Symbol (hex): ȉ</p>
<p>Symbol (decimal): ȉ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase i double grave (ȉ) is supported in modern browsers when using numeric entities or UTF-8:
👀 Live Preview
See the lowercase i double grave (ȉ) in linguistic and content contexts:
🧠 How It Works
Hexadecimal Code
ȉ uses the Unicode hexadecimal value 209 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȉ uses the decimal Unicode value 521 to display the same character. A common method for Latin Extended-B characters without named entities.
CSS Entity
\209 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
No Named Entity
Unlike many Latin-1 letters, ȉ has no standard named HTML entity. Use numeric references or type the character directly in UTF-8 source.
Same visual result
All three methods produce the glyph: ȉ. Unicode U+0209 sits in Latin Extended-B. It canonically decomposes to i (U+0069) + combining double grave accent (U+030F). Uppercase equivalent: U+0208 (Ȉ).
Use Cases
The lowercase i double grave (ȉ) is commonly used in:
Linguistic descriptions that mark tone or prosodic features with a double grave accent.
Papers and books using extended Latin letters for precise notation.
Specialized transcription where diacritics encode tone or stress information.
IPA and related systems where extra-low or specialized tone marks appear.
Checking fonts, normalization, and rendering of uncommon diacritics.
Ensuring correct indexing and exact matching in text-heavy applications.
Multilingual and academic content requiring extended Latin symbols.
💡 Best Practices
Do
- Serve pages as UTF-8; you can also type ȉ directly in UTF-8 source
- Use
ȉorȉwhen generating HTML programmatically - Pick fonts that support Latin Extended-B characters
- Use numeric entities for portability since there is no named entity
- Distinguish ȉ from grave ì, acute í, and circumflex î
Don’t
- Expect a named HTML entity like
ı—none exists for ȉ - Confuse double grave ȉ with single grave ì or other accented i forms
- Put CSS escape
\209in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Use hex or decimal references—no named entity exists
ȉ ȉFor CSS stylesheets, use the escape in the content property
\209Unicode U+0209 — LATIN SMALL LETTER I WITH DOUBLE GRAVE
Used in linguistics, tone marking, and specialized typography
Previous: Lowercase I Dotless (ı) Next: Lowercase I Grave (ì)
❓ Frequently Asked Questions
ȉ (hex), ȉ (decimal), or \209 in CSS content. There is no named HTML entity for this character.U+0209 (LATIN SMALL LETTER I WITH DOUBLE GRAVE). Latin Extended-B block. Hex 209, decimal 521. It decomposes to i + combining double grave (U+030F).ȉ or ȉ in HTML, or \209 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
