HTML Entity for Lowercase E Schwa Hook (ɚ)

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

What You'll Learn

How to display the schwa hook (ɚ) in HTML using hexadecimal, decimal, and CSS escape methods. Also called lowercase e schwa hook, this character is used in the International Phonetic Alphabet (IPA) for a rhotic (r-colored) schwa—common in American English (e.g., unstressed syllables in “letter” or “butter”). It is U+025A in the IPA Extensions block.

Render it with ɚ, ɚ, or CSS escape \25A. There is no named HTML entity for the schwa hook, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase E Schwa Hook Entity

Unicode U+025A

IPA Extensions

Hex Code ɚ

Hexadecimal reference

HTML Code ɚ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+025A
Hex code       ɚ
HTML code      ɚ
Named entity   (none)
CSS code       \25A
Meaning        Latin small letter schwa with hook
Also known as  Schwa hook / lowercase e schwa hook
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the schwa hook (ɚ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\25A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x25A;</p>
<p>Symbol (decimal): &#602;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The schwa hook (ɚ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the schwa hook (ɚ) in IPA and linguistic contexts:

Large glyphɚ
IPA exampleRhotic schwa (r-colored): ɚ
Also known asSchwa hook / lowercase e schwa hook
Not the same asə (U+0259, plain schwa without hook)
Numeric refs&#x25A; &#602; \25A

🧠 How It Works

1

Hexadecimal Code

&#x25A; uses the Unicode hexadecimal value 25A to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\25A 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+025A sits in the IPA Extensions block (U+0250–U+02AF). Do not confuse ɚ (schwa hook) with ə (plain schwa) or plain e (U+0065). There is no named HTML entity.

Use Cases

The schwa hook (ɚ) is commonly used in:

🔤 IPA & Phonetics

International Phonetic Alphabet transcriptions for rhotic (r-colored) schwa vowels.

📚 American English

Pronunciation guides for unstressed r-colored vowels in words like “letter” and “butter.”

🌐 Linguistics

Scholarly articles, research sites, and phonetic annotation tools.

📄 Publishing

Dictionary entries and academic content with IPA rhotic vowel notation.

🎨 Language Learning

ESL and pronunciation apps teaching American English vowel sounds.

🔍 Search & Accessibility

Correct encoding so IPA content is indexed and read consistently.

📝 Transcription

Phonetic transcription systems for rhotic vowel notation.

💡 Best Practices

Do

  • Use &#602; or &#x25A; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ɚ directly in UTF-8 source
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support IPA Extensions (U+0250–U+02AF)
  • Distinguish ɚ (schwa hook) from ə (plain schwa) and plain e (U+0065)

Don’t

  • Assume a named entity exists—there is none for ɚ
  • Substitute ə (plain schwa) when ɚ (rhotic schwa) is required
  • Put CSS escape \25A in HTML text nodes
  • Assume all fonts render IPA Extension glyphs identically
  • Confuse ɚ with other IPA vowel symbols such as ɘ (reversed e)

Key Takeaways

1

Three references render ɚ (no named entity)

&#x25A; &#602;
2

For CSS stylesheets, use the escape in the content property

\25A
3

Unicode U+025A — LATIN SMALL LETTER SCHWA WITH HOOK

4

Essential for rhotic IPA notation and American English phonetic content

❓ Frequently Asked Questions

Use &#x25A; (hex), &#602; (decimal), or \25A in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+025A (LATIN SMALL LETTER SCHWA WITH HOOK). IPA Extensions block. Hex 25A, decimal 602. Used in the International Phonetic Alphabet for a rhotic (r-colored) schwa, common in American English.
In phonetic transcription, IPA notation for rhotic vowels, pronunciation guides, American English linguistic content, dictionary entries, and academic texts that require this phonetic symbol.
HTML code (&#602; or &#x25A;) is used in HTML content. The CSS entity (\25A) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ɚ but in different contexts.
No. There is no named HTML entity for ɚ. Use &#602; or &#x25A; in HTML, or \25A in CSS. This is standard for many IPA Extension characters.

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