HTML Entity for Esh Loop (ƪ)

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

What You'll Learn

How to display the Esh Loop (ƪ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01AA (LATIN LETTER REVERSED ESH LOOP) in the Latin Extended-B block (U+0180–U+024F)—used in linguistics, phonetic notation, and specialized typography.

Render it with ƪ, ƪ, or CSS escape \1AA. There is no named HTML entity. Do not confuse ƪ with esh (ʃ), esh curl (ʆ), or esh middle stroke (ʄ).

⚡ Quick Reference — Esh Loop

Unicode U+01AA

Latin Extended-B

Hex Code ƪ

Hexadecimal reference

HTML Code ƪ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01AA
Hex code       ƪ
HTML code      ƪ
Named entity   (none)
CSS code       \1AA
Meaning        Latin letter reversed esh loop
Related        U+0283 = Esh (ʃ); U+0286 = Esh curl (ʆ)
1

Complete HTML Example

This example demonstrates the Esh Loop (ƪ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\1AA";
  }
 </style>
</head>
<body>
<p>Esh Loop using Hexadecimal: &#x01AA;</p>
<p>Esh Loop using HTML Code: &#426;</p>
<p id="point">Esh Loop using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Esh Loop entity is universally supported in modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the esh loop symbol (ƪ) in context and compared with esh curl (ʆ):

Esh loop ƪ
Large glyph ƪ
vs esh curl ƪ   vs   ʆ
Numeric refs &#x01AA; &#426;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x01AA; uses the Unicode hexadecimal value 01AA to display the Esh Loop. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#426; uses the decimal Unicode value 426 to display the same character.

HTML markup
3

CSS Entity

\1AA 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+01AA in the Latin Extended-B block (U+0180–U+024F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Esh Loop (ƪ) commonly appears in:

📝 IPA transcription

Extended Latin and phonetic notation requiring the reversed esh loop.

🎓 Linguistics

Academic papers, phonology, and sound inventories on the web.

🗣 Pronunciation

Dictionaries, language apps, and pronunciation guides.

📚 Language learning

Lessons contrasting esh, esh curl, esh loop, and related symbols.

📰 Research

Linguistic HTML with correct Latin Extended-B symbols.

🌐 Symbol guides

IPA and phonetic entity reference pages.

💡 Best Practices

Do

  • Use &#x01AA; or &#426; for readable IPA markup
  • Use IPA-friendly fonts (e.g. Charis SIL, DejaVu Sans)
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add context for screen readers when the symbol carries phonetic meaning
  • Use brackets [ƪ] for phonetic vs slashes /ƪ/ for phonemic notation

Don’t

  • Confuse ƪ (esh loop) with ʃ (esh) or ʆ (esh curl)
  • Expect a named entity—none exists for U+01AA
  • Put CSS escape \1AA in HTML text nodes
  • Assume every font renders Latin Extended-B clearly
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ƪ

&#x01AA; &#426;
2

For CSS stylesheets, use the escape in the content property

\1AA
3

Unicode U+01AA — LATIN LETTER REVERSED ESH LOOP

4

Latin Extended-B—distinct from ʃ esh and ʆ esh curl

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x01AA; (hex), &#426; (decimal), or \1AA in CSS content. There is no named entity.
U+01AA (LATIN LETTER REVERSED ESH LOOP). Latin Extended-B block (U+0180–U+024F). Hex 01AA, decimal 426. Reversed esh loop in linguistic notation.
When you need the reversed esh loop character in linguistic content, extended Latin notation, pronunciation guides, or specialized typography.
Named entities cover a subset of common characters. U+01AA has no named entity—use &#x01AA; or &#426; in markup, or \1AA in CSS.
HTML references (&#426; or &#x01AA;) go in markup. The CSS escape \1AA is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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