HTML Entity for Schwa Latin Subscript (ₔ)

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

What You'll Learn

How to display the Latin subscript small letter schwa (ₔ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2094 (LATIN SUBSCRIPT SMALL LETTER SCHWA) in the Superscripts and Subscripts block (U+2070–U+209F)—a subscript schwa glyph used in phonetic transcriptions and specialized linguistic notation.

Render it with ₔ, ₔ, or CSS escape \2094. There is no named HTML entity. Do not confuse ₔ with the standard IPA schwa ə (U+0259) or subscript x (U+2093).

⚡ Quick Reference — Schwa Latin Subscript

Unicode U+2094

Superscripts and Subscripts

Hex Code ₔ

Hexadecimal reference

HTML Code ₔ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2094
Hex code       ₔ
HTML code      ₔ
Named entity   (none)
CSS code       \2094
Meaning        Latin subscript small letter schwa
Block          Superscripts and Subscripts (U+2070–U+209F)
Related        U+0259 = schwa (ə / IPA)
               U+2093 = subscript x (ₓ)
1

Complete HTML Example

A simple example showing the Latin subscript small letter schwa (ₔ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2094";
  }
 </style>
</head>
<body>
<p>Schwa Subscript (hex): &#x2094;</p>
<p>Schwa Subscript (decimal): &#8340;</p>
<p id="point">Schwa Subscript (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Schwa Latin Subscript character (ₔ) is supported in modern browsers when fonts include Superscripts and Subscripts (U+2070–U+209F):

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

👀 Live Preview

See ₔ rendered live in phonetic and linguistic contexts:

Large glyph
Phonetic aₔ   nₔ
vs IPA schwa ₔ subscript   vs   ə baseline schwa
Numeric refs &#x2094; &#8340; \2094

🧠 How It Works

1

Hexadecimal Code

&#x2094; uses Unicode hexadecimal 2094 to display ₔ in HTML markup.

HTML markup
2

Decimal HTML Code

&#8340; uses decimal Unicode value 8340 for the same character.

HTML markup
3

CSS Entity

\2094 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 . Unicode U+2094 (LATIN SUBSCRIPT SMALL LETTER SCHWA). No named entity.

Use Cases

The Schwa Latin Subscript character (ₔ) commonly appears in:

💬 Phonetics

IPA transcriptions and pronunciation guides with subscript schwa notation.

📖 Linguistics

Academic papers, research documents, and comparative language studies.

📚 Dictionaries

Dictionary entries and language reference materials.

🎓 Education

Language learning resources and linguistic tutorials.

📄 Academic

Journal articles and scholarly publications on phonology.

🌐 Symbol guides

Unicode and HTML entity reference pages for subscript letters.

💡 Best Practices

Do

  • Use &#x2094; or &#8340; in HTML (no named entity)
  • Choose a font with good IPA and subscript coverage (e.g. Charis SIL, Doulos SIL)
  • Use ə (U+0259) for standard baseline IPA schwa when subscript is not required
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric method (hex or decimal) consistent per document

Don’t

  • Confuse ₔ (subscript schwa) with ə (baseline IPA schwa)
  • Use <sub> with ə as a substitute when ₔ is the required glyph
  • Expect a named HTML entity for U+2094
  • Put CSS escape \2094 in HTML text nodes
  • Assume every system font renders ₔ clearly at small sizes

Key Takeaways

1

Two HTML numeric references plus CSS insert ₔ

&#x2094; &#8340;
2

For CSS, use \2094 in the content property

3

Unicode U+2094 — LATIN SUBSCRIPT SMALL LETTER SCHWA

4

No named entity—use hex or decimal

5

Not the same as ə (IPA schwa)

❓ Frequently Asked Questions

Use &#x2094; (hex), &#8340; (decimal), or \2094 in CSS content. There is no named HTML entity. In UTF-8 you can also type ₔ directly.
U+2094 (LATIN SUBSCRIPT SMALL LETTER SCHWA). Superscripts and Subscripts block (U+2070–U+209F). Hex 2094, decimal 8340.
In phonetic transcriptions, IPA notation, linguistic documentation, dictionary entries, academic papers, and language research that requires a subscript schwa glyph below the baseline.
U+2094 (ₔ) is a subscript schwa—a dedicated glyph below the baseline. U+0259 (ə) is the standard IPA schwa on the baseline. Use ə for normal IPA; use ₔ when your notation system requires the subscript form.
HTML references (&#8340; or &#x2094;) go in markup. The CSS escape \2094 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ₔ.

Explore More HTML Entities!

Discover 1500+ HTML character references — phonetic symbols, subscripts, 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