HTML Entity for Lowercase E Schwa (ə)

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

What You'll Learn

How to display the schwa (ə) in HTML using hexadecimal, decimal, and CSS escape methods. Also called lowercase e schwa, this character is used in the International Phonetic Alphabet (IPA) for the mid central vowel—the most common vowel sound in English. It is U+0259 in the IPA Extensions block.

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

⚡ Quick Reference — Lowercase E Schwa Entity

Unicode U+0259

IPA Extensions

Hex Code ə

Hexadecimal reference

HTML Code ə

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0259
Hex code       ə
HTML code      ə
Named entity   (none)
CSS code       \259
Meaning        Latin small letter schwa
Also known as  Lowercase e schwa
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

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

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

🌐 Browser Support

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

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

👀 Live Preview

See the schwa (ə) in IPA and linguistic contexts:

Large glyphə
IPA exampleMid central vowel: ə
Also known asSchwa / lowercase e schwa
Not the same ase (U+0065, plain letter)
Numeric refs&#x259; &#601; \259

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The schwa (ə) is commonly used in:

🔤 IPA & Phonetics

International Phonetic Alphabet transcriptions for the mid central vowel.

📚 Pronunciation Guides

Dictionary entries, apps, and courses showing how words are spoken.

🌐 Linguistics

Scholarly articles, research sites, and phonetic annotation tools.

📄 Publishing

Academic and editorial content with IPA or phonetic symbols.

🎨 Language Learning

English and ESL materials where schwa is the most frequent unstressed vowel.

🔍 Search & Accessibility

Correct encoding so IPA content is indexed and read consistently.

📝 Transcription

Phonetic transcription systems and speech notation tools.

💡 Best Practices

Do

  • Use &#601; or &#x259; 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) from plain e (U+0065) and ɘ (reversed e)

Don’t

  • Assume a named entity exists—there is none for ə
  • Substitute plain e when ə is required for IPA accuracy
  • Put CSS escape \259 in HTML text nodes
  • Assume all fonts render IPA Extension glyphs identically
  • Confuse ə (schwa) with ɘ (reversed e) or other IPA vowels

Key Takeaways

1

Three references render ə (no named entity)

&#x259; &#601;
2

For CSS stylesheets, use the escape in the content property

\259
3

Unicode U+0259 — LATIN SMALL LETTER SCHWA

4

Essential for IPA, pronunciation guides, and phonetic web content

❓ Frequently Asked Questions

Use &#x259; (hex), &#601; (decimal), or \259 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+0259 (LATIN SMALL LETTER SCHWA). IPA Extensions block. Hex 259, decimal 601. Used in the International Phonetic Alphabet for the mid central vowel—the most common vowel sound in English.
In phonetic transcription, IPA notation, pronunciation guides, dictionary entries, language learning materials, and linguistic or academic content that requires phonetic notation.
HTML code (&#601; or &#x259;) is used in HTML content. The CSS entity (\259) 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 &#601; or &#x259; in HTML, or \259 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