HTML Entity for Alpha (ɑ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+0251

What Is the Alpha Entity?

Latin small letter alpha (ɑ) is Unicode U+0251 in the IPA Extensions block. In the International Phonetic Alphabet it marks the open back unrounded vowel. It is not the same character as Greek small letter alpha (α, U+03B1 / α).

Remember
Character     ɑ
Unicode       U+0251
Hex entity    ɑ
Decimal       ɑ
CSS escape    \0251
Named entity  (none)
Not the same  Greek α → α (U+03B1)

All numeric forms produce the same glyph: ɑ. Prefer typing ɑ in UTF-8 pages when you can; use entities for CSS content, generated markup, or when encoding must be explicit.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterɑHTML text (UTF-8)
Hex entityɑHTML markup
Decimal entityɑHTML markup
CSS escape\0251Stylesheet content
Named entity (U+0251)—Not defined in HTML5
Greek α (related)α / αGreek text / math — different character

When to Use Which

SituationUse
IPA / phonetic transcriptionType ɑ or ɑ
Greek letter or math αα (U+03B1) — not U+0251
Need an entity in HTML sourceɑ or ɑ
Generated text via ::before / ::aftercontent: "\0251"
Looking for α for IPA ɑWrong character — use numeric form for U+0251

Live Preview

Latin small letter alpha in common study contexts.

Inline IPA /fɑːðə/ father
Large glyph ɑ
vs. Greek α Latin IPA: ɑ (U+0251) | Greek: α (U+03B1)
vs. reverse ɒ ɑ (U+0251) | ɒ (U+0252)
With entities Hex: ɑ | Decimal: ɑ

Complete HTML Example

One page that shows Latin small letter alpha with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ɑ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Alpha (ɑ) in HTML</title>
  <style>
    #point::after {
      content: "\0251";
    }
  </style>
</head>
<body>
  <p>Alpha using Hex Code: &#x0251;</p>
  <p>Alpha using HTML Code: &#593;</p>
  <p id="point">Alpha using CSS Entity: </p>
  <p>Typed directly: ɑ</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+0251 → &#x0251; in HTML. The browser turns it into ɑ.

2. Decimal: same code point as 593 → &#593;. Same result as hex.

3. CSS: use \0251 in content (not an HTML entity). #point::after appends that ɑ after the paragraph text.

4. Typed ɑ: best for normal UTF-8 text. All four lines show the same letter.

Pitfalls & Tips

Common mistakes when working with the alpha (ɑ) entity.

Greek

Do not use &alpha;

&alpha; is Greek α (U+03B1), not Latin IPA ɑ (U+0251).

Named?

No named entity for ɑ

HTML5 does not define a named entity for U+0251. Use numeric forms.

CSS vs HTML

Do not mix escapes

\0251 belongs in CSS. &#x0251; / &#593; belong in HTML.

Fonts

Use IPA-capable fonts

Some UI fonts omit IPA Extensions. Prefer fonts that cover phonetic symbols.

ɒ

Not the same as reverse alpha

ɒ (U+0252) is turned alpha — a different IPA vowel.

Semicolon

End references

Always finish with ; — write &#593;, not &#593.

Browser Support

Latin small letter alpha (U+0251) and its numeric entity forms (&#x0251;, &#593;, CSS \\0251) are supported in all mainstream browsers. Glyph availability depends on font support for the IPA Extensions block.

✓ Universal support

Alpha (ɑ)

Type ɑ, or encode with hex, decimal, or CSS escape — same letter everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0251 / entities Full support

Bottom line: Use a typed ɑ for normal UTF-8 text. Prefer &#x0251; or &#593; in HTML when encoding must be explicit, and \\0251 only inside CSS content.

Key Takeaways

  • Unicode: Latin small letter alpha is U+0251 (decimal 593).
  • HTML: use &#x0251; or &#593; when you need an entity.
  • CSS: use \0251 inside content for generated text.
  • Watch out: &alpha; is Greek α — not IPA ɑ.

One line: U+0251 → type ɑ, or encode as &#x0251; / &#593; / CSS \0251.

Frequently Asked Questions

Use &#x0251; (hex), &#593; (decimal), or the CSS escape \0251 in the content property. All render ɑ. You can also paste ɑ directly if your file is UTF-8. There is no named HTML entity for U+0251.
U+0251 (hex 0251, decimal 593). Unicode names it Latin small letter alpha. It belongs to the IPA Extensions block (U+0250–U+02AF).
No. Use numeric references like &#593; or &#x0251;. The named entity &alpha; is for Greek small letter alpha (α, U+03B1) — a different character.
Use ɑ (U+0251) for IPA and phonetic transcription (open back unrounded vowel). Use Greek α / &alpha; for Greek text, math variables, and classical Greek content.
HTML entities (&#593; or &#x0251;) go in markup. The CSS escape \0251 is used in stylesheets (usually in the content property of ::before/::after). Both render ɑ.
ɒ is Latin small letter turned alpha (U+0252) — the IPA open back rounded vowel. It is a different character from ɑ (U+0251).

Did you know?

Latin small letter alpha is Unicode U+0251 (decimal 593) in the IPA Extensions block. It is the IPA symbol for the open back unrounded vowel (as in many pronunciations of English father). HTML5 has no named entity for ɑ — do not confuse it with Greek &alpha; (α, U+03B1).

Next: Alpha Reverse

Learn the HTML entity for Latin small letter turned alpha (ɒ) used in IPA for the open back rounded vowel.

Alpha Reverse tutorial →

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