HTML Entity for Lowercase I (i)

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

What You'll Learn

How to display the lowercase letter i in HTML using entity methods and direct character input. The letter i is the ninth letter of the Latin alphabet (U+0069) and is part of the Basic Latin block. It appears in every Western-language text, from body copy to form labels and code examples. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.

This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &i; for this letter.

⚡ Quick Reference — Lowercase I Entity

Unicode U+0069

Basic Latin (ASCII)

Hex Code i

Hexadecimal reference

HTML Code i

Decimal reference

Direct Character i

Type directly (no named entity)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0069
Hex code       i
HTML code      i
Named entity   (none — use i directly)
CSS code       \0069
Meaning        Latin small letter i
Related        U+0049 = I (uppercase)
Block          Basic Latin (U+0000–U+007F)
1

Complete HTML Example

A simple example showing the lowercase letter i using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0069";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x69;</p>
<p>Symbol (decimal): &#105;</p>
<p>Symbol (direct): i</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase letter i (U+0069) is universally supported in all browsers and platforms as part of Basic Latin:

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

👀 Live Preview

See the lowercase letter i in common text contexts:

Large glyphi
Body textThe letter i appears in words like idea, information, and important.
Labelidea, island, index
Alphabetg h i j k
Not the same asdotless ı (U+0131) or accented í (U+00ED, &iacute;)
Numeric refs&#x69; &#105; \0069

🧠 How It Works

1

Hexadecimal Code

&#x69; uses the Unicode hexadecimal value 69 to display the letter. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#105; uses the decimal Unicode value 105 to display the same character. This is the ASCII/Unicode decimal for i.

HTML markup
3

Direct Character

Type i directly in HTML. There is no named entity like &i;; the character itself is the standard approach in body text.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: i. Unicode U+0069 sits in Basic Latin. The uppercase form is U+0049 (I). Do not confuse the plain letter i with accented forms like &iacute; (í) or dotless ı. In normal text, typing i is preferred.

Use Cases

The lowercase letter i (or its entity forms) is commonly used in:

📝 Body text

Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.

📄 Forms & labels

Input fields, placeholders, and UI labels containing the letter i (e.g., “Email”, “Username”).

🎨 CSS generated content

Using \0069 in the CSS content property to insert i via ::before or ::after.

📚 Language & education

Essential for English and many other languages; used in language-learning and educational content.

⚙ Programmatic HTML

When building HTML in code, using &#105; or &#x69; ensures correct output regardless of encoding context.

♿ Accessibility

Correct character encoding ensures screen readers and assistive technologies read the letter properly.

🌐 Internationalization

Part of Basic Latin; supported in all major fonts and encoding standards for global content.

💡 Best Practices

Do

  • Type i directly in body content; use entities only when necessary
  • Serve pages as UTF-8 so Basic Latin characters render without entities
  • Use numeric references (&#x69; or &#105;) when escaping is required
  • Use \0069 in CSS content when generating the letter via pseudo-elements
  • Remember lowercase i is U+0069 and uppercase I is U+0049 when case matters

Don’t

  • Overuse numeric entities for i in normal readable text
  • Expect a named HTML entity like &i;—none exists for this letter
  • Confuse plain i (U+0069) with dotless ı (U+0131) or accented &iacute; (í)
  • Put CSS escape \0069 in HTML text nodes
  • Mix entity styles randomly in one file without reason

Key Takeaways

1

Type i directly, or use hex/decimal references

&#x69; &#105;
2

For CSS stylesheets, use the escape in the content property

\0069
3

Unicode U+0069 — LATIN SMALL LETTER I

4

Ninth letter of the Latin alphabet (Basic Latin block)

❓ Frequently Asked Questions

Type i directly, or use &#x69; (hex), &#105; (decimal), or \0069 in CSS content. For most content, typing i is standard; use numeric or CSS entities when escaping or generating via CSS.
U+0069 (LATIN SMALL LETTER I). Basic Latin block. Hex 69, decimal 105. It is the ninth letter of the Latin alphabet and a standard character in virtually all Western scripts.
For normal text, typing i is preferred. Use numeric or CSS entities when generating HTML programmatically, escaping in attributes, using CSS ::before/::after content, or ensuring encoding in legacy systems.
No. Named HTML entities (e.g. &amp;, &lt;) exist for a limited set of characters. The lowercase letter i has no named entity. Use the character directly or numeric references (&#x69; or &#105;) or CSS \0069 when needed.
i (U+0069) is the Latin small letter i with a dot, used in most languages. ı (U+0131) is the Latin small letter dotless i, used in Turkish and some other scripts. They are different Unicode characters with different uses; Turkish has both in its alphabet.

Explore More HTML Entities!

Discover 1500+ HTML character references — 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