HTML Entity for Lowercase A Reverse (ɐ)

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

What You'll Learn

How to display the Latin small letter turned a (ɐ) in HTML using hexadecimal, decimal, and CSS escape methods. Also called lowercase a reverse, this character is used in the International Phonetic Alphabet (IPA) for the near-open central vowel. It is U+0250 in the IPA Extensions block.

Render it with ɐ, ɐ, or CSS escape \0250. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase A Reverse Entity

Unicode U+0250

IPA Extensions

Hex Code ɐ

Hexadecimal reference

HTML Code ɐ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0250
Hex code       ɐ
HTML code      ɐ
Named entity   (none)
CSS code       \0250
Meaning        Latin small letter turned a
Also known as  Lowercase a reverse
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

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

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

🌐 Browser Support

The turned a (ɐ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the turned a (ɐ) in IPA and linguistic contexts:

Large glyphɐ
IPA exampleNear-open central vowel: ɐ
Also known asTurned a / lowercase a reverse
Not the same asa (U+0061, plain letter)
Numeric refs&#x250; &#592; \0250

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\0250 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+0250 sits in the IPA Extensions block (U+0250–U+02AF). Do not confuse ɐ (turned a) with plain a (U+0061). There is no named HTML entity.

Use Cases

The turned a (ɐ) is commonly used in:

🔤 IPA & Phonetics

International Phonetic Alphabet transcriptions for the near-open central vowel.

📚 Language Learning

Dictionaries, apps, and courses that show IPA pronunciation guides.

🌐 Linguistics

Scholarly articles, research sites, and phonetic annotation tools.

📄 Publishing

Academic and editorial content with IPA or phonetic symbols.

🎨 Typography

Reversed or decorative typography requiring the turned a glyph.

🔍 Search & Accessibility

Correct encoding so IPA content is indexed and read consistently.

📝 Transcription

Phonetic transcription systems and annotation tools for speech notation.

💡 Best Practices

Do

  • Use &#592; or &#x250; 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 ɐ (turned a) from plain a (U+0061)

Don’t

  • Assume a named entity exists—there is none for ɐ
  • Substitute plain a when ɐ is required for IPA accuracy
  • Put CSS escape \0250 in HTML text nodes
  • Assume all fonts render IPA Extension glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render ɐ (no named entity)

&#x250; &#592;
2

For CSS stylesheets, use the escape in the content property

\0250
3

Unicode U+0250 — LATIN SMALL LETTER TURNED A

4

Essential for IPA, linguistics, and phonetic web content

❓ Frequently Asked Questions

Use &#x250; (hex), &#592; (decimal), or \0250 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+0250 (LATIN SMALL LETTER TURNED A). IPA Extensions block. Hex 250, decimal 592. Used in the International Phonetic Alphabet for the near-open central vowel.
In IPA transcriptions, linguistic and phonetic content, language learning materials, and any notation that requires the IPA near-open central vowel. It is also used in some reversed or decorative typography.
HTML code (&#592; or &#x250;) is used in HTML content. The CSS entity (\0250) 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 &#592; or &#x250; in HTML, or \0250 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