HTML Entity for Lowercase E Schwa Large (Ə)

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

What You'll Learn

How to display the Latin capital letter schwa (Ə) in HTML using hexadecimal, decimal, and CSS escape methods. Listed in this series as lowercase e schwa large, this character is the capital (large) form of the schwa—the uppercase counterpart to ə (U+0259). It is used in the International Phonetic Alphabet and in some language orthographies. It is U+018F in the Latin Extended-B block.

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

⚡ Quick Reference — Lowercase E Schwa Large Entity

Unicode U+018F

Latin Extended-B

Hex Code Ə

Hexadecimal reference

HTML Code Ə

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+018F
Hex code       Ə
HTML code      Ə
Named entity   (none)
CSS code       \18F
Meaning        Latin capital letter schwa
Also known as  Schwa large / lowercase e schwa large
Small form     ə (U+0259, schwa)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

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

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

🌐 Browser Support

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

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

👀 Live Preview

See the capital schwa (Ə) in IPA and linguistic contexts:

Large glyphƏ
IPA exampleCapital schwa: Ə   Small schwa: ə
Also known asLatin capital letter schwa / schwa large
Not the same ase (U+0065) or ə (U+0259, small schwa)
Numeric refs&#x18F; &#399; \18F

🧠 How It Works

1

Hexadecimal Code

&#x18F; uses the Unicode hexadecimal value 18F to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#399; uses the decimal Unicode value 399 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

\18F 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+018F sits in the Latin Extended-B block. Do not confuse Ə (capital schwa) with ə (small schwa) or plain e (U+0065). There is no named HTML entity.

Use Cases

The capital schwa (Ə) is commonly used in:

🔤 IPA & Phonetics

International Phonetic Alphabet and phonetic notation requiring the capital schwa.

🌐 Language Orthographies

Languages that use Ə as a letter in their writing systems (e.g., Azerbaijani).

📚 Linguistics

Scholarly articles, research sites, and phonetic annotation tools.

📄 Publishing

Dictionary headers, academic texts, and editorial content with phonetic symbols.

🎨 Typography

Typographic projects pairing capital and small schwa forms (Ə / ə).

🔍 Search & Accessibility

Correct encoding so linguistic content is indexed and read consistently.

📝 Transcription

Phonetic transcription systems and language-learning materials.

💡 Best Practices

Do

  • Use &#399; or &#x18F; 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 Latin Extended-B (U+0180–U+024F)
  • Distinguish Ə (capital schwa) from ə (small schwa) and plain e (U+0065)

Don’t

  • Assume a named entity exists—there is none for Ə
  • Substitute ə (small schwa) when Ə (capital schwa) is required
  • Put CSS escape \18F in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Confuse Ə with other extended Latin letters or IPA symbols

Key Takeaways

1

Three references render Ə (no named entity)

&#x18F; &#399;
2

For CSS stylesheets, use the escape in the content property

\18F
3

Unicode U+018F — LATIN CAPITAL LETTER SCHWA

4

Capital (large) form of schwa; pair with ə (U+0259) for small form

❓ Frequently Asked Questions

Use &#x18F; (hex), &#399; (decimal), or \18F in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+018F (LATIN CAPITAL LETTER SCHWA). Latin Extended-B block. Hex 18F, decimal 399. It is the capital (large) form of the schwa, used in IPA notation and several language orthographies.
In phonetic transcription, IPA notation, linguistic content, language-specific orthographies that use this letter, dictionary headers, and academic or typographic projects requiring the capital schwa.
HTML code (&#399; or &#x18F;) is used in HTML content. The CSS entity (\18F) 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 &#399; or &#x18F; in HTML, or \18F in CSS. This is standard for many Latin Extended-B 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