HTML Entity for Lowercase I Tilde (ĩ)

What You'll Learn
How to display the lowercase i with tilde (ĩ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is used in Kikuyu (Gĩkũyũ), older Greenlandic orthography, and transliteration systems. It is U+0129 in the Latin Extended-A block.
Render it with ĩ, ĩ, ĩ, or CSS escape \129. The named entity ĩ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase I Tilde Entity
U+0129Latin Extended-A
ĩHexadecimal reference
ĩDecimal reference
ĩMost readable option
Name Value
──────────── ──────────
Unicode U+0129
Hex code ĩ
HTML code ĩ
Named entity ĩ
CSS code \129
Meaning Latin small letter i with tilde
Related U+0128 = Ĩ (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase i tilde (ĩ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\129";
}
</style>
</head>
<body>
<p>Symbol (hex): ĩ</p>
<p>Symbol (decimal): ĩ</p>
<p>Symbol (named): ĩ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase i tilde (ĩ) and the named entity ĩ are supported in modern browsers:
👀 Live Preview
See the lowercase i tilde (ĩ) in language and content contexts:
i🧠 How It Works
Named Entity
ĩ is the standard named entity for ĩ—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
ĩ uses the Unicode hexadecimal value 129 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĩ uses the decimal Unicode value 297 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\129 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ĩ. Unicode U+0129 sits in Latin Extended-A. It decomposes to i (U+0069) + combining tilde (U+0303). Uppercase equivalent: U+0128 (Ĩ). Do not confuse with ñ (n with tilde).
Use Cases
The lowercase i tilde (ĩ) is commonly used in:
A letter in the Kikuyu alphabet (Gĩkũyũ), used in Kenya in many words and proper nouns.
Used in older Greenlandic orthography and historical texts with tilde-marked vowels.
Textbooks, dictionaries, and resources for Kikuyu and other languages with nasalized vowels.
Correctly capturing Kikuyu names and place names in inputs and databases.
Transliteration systems and notation using the tilde for nasalization or other features.
Correct spelling with ĩ is essential for Kikuyu locales and multilingual content.
Accurate diacritics improve clarity for readers and assistive technologies.
💡 Best Practices
Do
- Use
ĩin HTML when possible for readability - Serve pages as UTF-8; you can also type ĩ directly in UTF-8 source
- Set
lang="ki"for Kikuyu content to aid pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ĩ from ñ (n tilde), í (acute), and plain
i
Don’t
- Substitute plain
iwhen ĩ is required for correct spelling - Confuse ĩ (i tilde) with ñ (n tilde) or Ĩ (uppercase)
- Put CSS escape
\129in HTML text nodes - Assume all fonts render Latin Extended-A tilde glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render ĩ; named entity is most readable
ĩ ĩ ĩFor CSS stylesheets, use the escape in the content property
\129Unicode U+0129 — LATIN SMALL LETTER I WITH TILDE
Essential for Kikuyu, older Greenlandic, and i18n content
Previous: Lowercase I Stroke (ɨ) Next: Lowercase I Umlaut
❓ Frequently Asked Questions
ĩ. You can also use ĩ (decimal) or ĩ (hex).U+0129 (LATIN SMALL LETTER I WITH TILDE). Latin Extended-A block. Hex 129, decimal 297.i (U+0069) + combining tilde (U+0303).Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
