HTML Entity for Lowercase I Stroke (ɨ)

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

What You'll Learn

How to display the lowercase i with stroke (ɨ) in HTML using hexadecimal, decimal, and CSS escape methods. Also called barred i or i bar, this character is used in the International Phonetic Alphabet (IPA) and linguistic notation. It is U+0268 in the IPA Extensions block.

Render it with ɨ, ɨ, or CSS escape \268. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase I Stroke Entity

Unicode U+0268

IPA Extensions

Hex Code ɨ

Hexadecimal reference

HTML Code ɨ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0268
Hex code       ɨ
HTML code      ɨ
Named entity   (none)
CSS code       \268
Meaning        Latin small letter i with stroke (barred i)
Related        U+0197 = uppercase i with stroke (Ɨ)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase i stroke (ɨ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The lowercase i stroke (ɨ) renders correctly in modern browsers when UTF-8 is used:

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

👀 Live Preview

See the lowercase i stroke (ɨ) in IPA and linguistic contexts:

Large glyphɨ
IPAClose central unrounded vowel (barred i)
Uppercase pairƗ (U+0197) / ɨ (U+0268)
Not the same ası (dotless i), plain i, or į (ogonek)
Numeric refs&#x268; &#616; \268

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#616; uses the decimal Unicode value 616 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ɨ. Unicode U+0268 sits in IPA Extensions. There is no named HTML entity (unlike į with &iogon;). Uppercase equivalent: U+0197 (Ɨ). Do not confuse with plain i (U+0069) or ı (dotless i).

Use Cases

The lowercase i stroke (ɨ) is commonly used in:

🔤 IPA

Represents the close central unrounded vowel in IPA transcriptions.

📚 Linguistics

Dictionaries, academic papers, and language learning materials for phonetic notation.

🇺🇸 American English

Can represent the weak vowel in syllables like the second syllable of “roses” or “button”.

🌐 Language documentation

Transcriptions of languages with a close central vowel sound.

📄 Lexicography

Pronunciation guides and dictionary entries using IPA symbols including ɨ.

🎨 Typography

Phonetic and linguistic content requiring correct barred-i rendering.

♿ Accessibility

Correct IPA rendering helps readers and assistive technologies interpret pronunciation.

💡 Best Practices

Do

  • Use &#616; or &#x268; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ɨ directly in UTF-8 source
  • Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL)
  • Pick one representation (hex or decimal) and use it consistently
  • Distinguish ɨ from ı (dotless i), plain i, and Ɨ (uppercase)

Don’t

  • Assume a named entity exists—there is none for ɨ
  • Substitute plain i when ɨ is required for IPA accuracy
  • Put CSS escape \268 in HTML text nodes
  • Assume all fonts render IPA barred-i glyphs identically
  • Confuse ɨ (barred i) with ı (dotless i) or į (ogonek)

Key Takeaways

1

Three references render ɨ (no named entity)

&#x268; &#616;
2

For CSS stylesheets, use the escape in the content property

\268
3

Unicode U+0268 — LATIN SMALL LETTER I WITH STROKE (barred i)

4

Essential for IPA, linguistics, and phonetic notation

❓ Frequently Asked Questions

No. Use the hex entity &#x268; or decimal &#616;, or CSS escape \268.
U+0268 (LATIN SMALL LETTER I WITH STROKE). IPA Extensions block. Hex 268, decimal 616.
Yes—if your document is UTF-8. Numeric entities are useful when you want an explicit, portable character reference.
In the International Phonetic Alphabet, ɨ represents the close central unrounded vowel. In American linguistics it can also represent the weak vowel in words like “roses” or “button”.
Use &#x268; (hex), &#616; (decimal), or \268 in CSS content. There is no named HTML entity for this character.

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