HTML Entity for Lowercase I Grave (ì)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00EC

What You'll Learn

How to display the lowercase i with grave accent (ì) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00EC in the Latin-1 Supplement block and is common in Italian, Scottish Gaelic, and other languages.

Render it with ì, ì, ì, or CSS escape \00EC. The named entity ì is often the most readable option in HTML source.

⚡ Quick Reference — Lowercase I Grave Entity

Unicode U+00EC

Latin-1 Supplement

Hex Code ì

Hexadecimal reference

HTML Code ì

Decimal reference

Named Entity ì

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00EC
Hex code       ì
HTML code      ì
Named entity   ì
CSS code       \00EC
Meaning        Latin small letter i with grave
Related        U+00CC = Ì (uppercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the lowercase i grave (ì) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00EC";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xEC;</p>
<p>Symbol (decimal): &#236;</p>
<p>Symbol (named): &igrave;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase i grave (ì) and the named entity &igrave; are universally supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase i grave (ì) in language and content contexts:

Large glyphì
Italiancosì, cioè
Scottish GaelicGrave accent on i for vowel length or quality
Not the same así (acute), î (circumflex), or ȉ (double grave)
Named entity&igrave; renders as ì
Numeric refs&#xEC; &#236; &igrave; \00EC

🧠 How It Works

1

Named Entity

&igrave; is the standard named entity for ì—readable in source HTML and part of the HTML Latin-1 entity set.

HTML markup
2

Hexadecimal Code

&#xEC; uses the Unicode hexadecimal value EC to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#236; uses the decimal Unicode value 236 to display the same character. A common method for Latin-1 characters.

HTML markup
4

CSS Entity

\00EC is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: ì. Unicode U+00EC sits in Latin-1 Supplement. It decomposes to i (U+0069) + combining grave accent (U+0300). Uppercase equivalent: U+00CC (&Igrave;). Do not confuse with í (acute), î (circumflex), or ȉ (double grave).

Use Cases

The lowercase i grave (ì) is commonly used in:

🇮🇹 Italian

Used in common words like così and cioè for correct Italian spelling.

🇬🇩 Scottish Gaelic

Appears in Gaelic orthography where the grave indicates vowel length or quality.

🌐 Multilingual Websites

International and localized content that must display accented characters correctly.

🔤 Language learning

Courses, flashcards, and educational materials teaching grave-accented letters.

📝 Data & forms

Correctly capturing names and words in input fields and databases.

📄 Publishing

Articles, blogs, and academic content with transliteration and diacritics.

♿ Accessibility & i18n

Accurate spelling with diacritics improves clarity for readers and assistive technologies.

💡 Best Practices

Do

  • Use &igrave; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type ì directly in UTF-8 source
  • Set lang attributes (e.g. lang="it", lang="gd") for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish ì (grave) from í (acute), î (circumflex), and ȉ (double grave)

Don’t

  • Substitute plain i when ì is required for correct spelling
  • Confuse ì (grave) with í (acute) or î (circumflex)
  • Put CSS escape \00EC in HTML text nodes
  • Assume all fonts render accented Latin-1 glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render ì; named entity is most readable

&#xEC; &#236; &igrave;
2

For CSS stylesheets, use the escape in the content property

\00EC
3

Unicode U+00EC — LATIN SMALL LETTER I WITH GRAVE

4

Common in Italian, Scottish Gaelic, and i18n content

❓ Frequently Asked Questions

The named HTML entity is &igrave;. You can also use &#236; (decimal) or &#xEC; (hex).
U+00EC (LATIN SMALL LETTER I WITH GRAVE). Latin-1 Supplement block. Hex EC, decimal 236.
Yes—if your document is UTF-8. Entities are useful when you want an explicit, portable character reference.
ì (U+00EC) is a precomposed character. It canonically decomposes to i (U+0069) + combining grave accent (U+0300).
In Italian (e.g. così, cioè) and Scottish Gaelic, and in other languages that use the grave accent on i for stress or vowel quality.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful