HTML Entity for Alpha Reverse (ɒ)

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

What You'll Learn

How to display Latin small letter turned alpha (ɒ) in HTML using numeric references or a CSS escape. Unicode’s official name is Latin small letter turned alpha (U+0252); it is often informally called alpha reverse and is used in the IPA for the open back rounded vowel.

The character sits in the IPA Extensions block (U+0250–U+02AF). Use ɒ or ɒ in markup; there is no standard short named HTML entity for this letter. In CSS content, use a hex escape such as \0252 or \000252. Do not confuse ɒ with Greek alpha (α, U+03B1) or Latin alpha (ɑ, U+0251).

⚡ Quick Reference — Alpha Reverse (ɒ)

Unicode U+0252

IPA Extensions

Hex Code ɒ

Hexadecimal reference

HTML Code ɒ

Decimal reference

Named Entity

Use numeric references (no standard short name)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0252
Hex code       ɒ
HTML code      ɒ
Named entity   (none standard)
CSS code       \0252
1

Complete HTML Example

This example shows ɒ (Latin small letter turned alpha) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0252";
  }
 </style>
</head>
<body>

<p>Alpha Reverse using Hexa Decimal: &#x0252;</p>
<p>Alpha Reverse using HTML Code: &#594;</p>
<p id="point">Alpha Reverse using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references and CSS escapes for U+0252 are supported in all modern browsers. Final appearance depends on fonts that cover the IPA Extensions block (U+0250–U+02AF):

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

👀 Live Preview

See ɒ in sample phonetic-style strings (rendering depends on font):

Isolated glyph ɒ
In brackets [ɒ] open back rounded vowel
Numeric refs Same letter as &#x0252; or &#594; in UTF-8 text.
Monospace U+0252 LATIN TURNED ALPHA
Font note IPA-capable fonts (e.g. Doulos SIL, Charis SIL) give the most predictable ɒ shape.

🧠 How It Works

1

Hexadecimal Code

&#x0252; references Unicode 0252 in hexadecimal. The x prefix marks a hex numeric character reference.

HTML markup
2

Decimal HTML Code

&#594; is the decimal code point 594 for the same letter.

HTML markup
3

CSS Escape

\0252 (or \000252) in content on ::before / ::after emits U+0252 without raw UTF-8 in HTML.

CSS stylesheet
=

Same code point

All paths expose U+0252 (IPA Extensions, U+0250–U+02AF). Official name: Latin small letter turned alpha. There is no standard short named HTML entity; use numbers or UTF-8.

Use Cases

Latin small letter turned alpha (ɒ, U+0252) fits these kinds of content:

🗣 IPA & phonetics

Transcriptions for the open back rounded vowel when your chart uses ɒ.

📚 Dictionaries

Pronunciation keys and etymology notes in plain HTML.

🎓 Language teaching

Courseware that contrasts ɒ with ɑ, ɔ, and similar vowel letters.

💻 Linguistics blogs

Readable numeric entities when full IPA fonts are loaded.

📚 Unicode references

Character tables for the IPA Extensions block.

💻 CMS & ebooks

Fallback markup when custom IPA input is not available.

🎨 Font specimens

Showing IPA coverage in typeface marketing pages.

💡 Best Practices

Do

  • Use UTF-8; prefer explicit &#x0252; / &#594; in hand-authored HTML (no short named entity)
  • Pick an IPA-capable font stack when ɒ must match textbook charts
  • Test with the same fonts your readers use; many system fonts still render ɒ acceptably
  • Use numeric references in generated markup or XML-first pipelines if needed
  • Use \0252 or \000252 only in CSS content, not inside HTML text nodes

Don’t

  • Confuse ɒ (U+0252) with Greek α (U+03B1) or Latin ɑ (U+0251)
  • Use a math-only font that omits IPA Extensions if ɒ is central to your layout
  • Expect every casual webfont to match a print IPA chart without testing
  • Paste CSS escapes into HTML markup (they belong in stylesheets)
  • Rely on a non-existent standard short named entity for U+0252

Key Takeaways

1

Two numeric references render ɒ (U+0252)

&#x0252; &#594;
2

In CSS, use a hex escape in content on pseudo-elements

\0252
3

Unicode U+0252 — Latin small letter turned alpha

4

No standard short named entity — use numbers or UTF-8

5

IPA Extensions block (U+0250–U+02AF); pair with an IPA-capable font when possible

❓ Frequently Asked Questions

Use &#x0252; (hex) or &#594; (decimal) in text. For CSS content, escapes such as \0252 or \000252 work. It is a full letter, not a combining mark.
U+0252 (hex 0252, decimal 594). Official name: Latin small letter turned alpha. Block: IPA Extensions (U+0250–U+02AF).
Greek small alpha is U+03B1 (α). Latin turned alpha ɒ is U+0252 for IPA; different code point, different typographic role.
Markup uses &#594; or &#x0252; in text nodes. CSS uses escapes such as \0252 inside content rules. Same character; different syntax layer.
There is no widely standardized short named entity for ɒ in HTML. Stick to numeric references or UTF-8.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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