HTML Entity for Gamma (Ɣ)

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

What You'll Learn

How to display the Latin capital letter Gamma (Ɣ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0194 in the Latin Extended-B block—used in linguistics, the International Phonetic Alphabet (IPA), and orthographies for several African languages.

Render it with Ɣ, Ɣ, or CSS escape \0194. There is no named HTML entity for this character. For the Greek letter Gamma (Γ), use Γ (U+0393) instead.

⚡ Quick Reference — Gamma

Unicode U+0194

Latin Extended-B

Hex Code Ɣ

Hexadecimal reference

HTML Code Ɣ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0194
Hex code       Ɣ
HTML code      Ɣ
Named entity   (none)
CSS code       \0194
Character      Latin capital letter Gamma (Ɣ)
Not to confuse U+0393 = Greek Gamma (Γ) — use Γ
1

Complete HTML Example

This example demonstrates the Latin Gamma (Ɣ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0194";
  }
 </style>
</head>
<body>
<p>Gamma using Hexadecimal: &#x194;</p>
<p>Gamma using Decimal: &#404;</p>
<p id="point">Gamma using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Latin Gamma (Ɣ) is widely supported in modern browsers when the font includes Latin Extended-B:

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

👀 Live Preview

See the Latin Gamma (Ɣ) in linguistics and language contexts:

IPA notation Voiced velar fricative Ɣ in phonetic transcription
Large glyph Ɣ
Orthography Dagbani / Ewe: Latin Gamma Ɣ in native spelling
Greek vs Latin Latin Ɣ (U+0194) • Greek Γ (U+0393, &Gamma;)
Numeric refs &#x194; &#404; \0194

🧠 How It Works

1

Hexadecimal Code

&#x194; uses the Unicode hexadecimal value 0194 to display the Latin Gamma. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#404; uses the decimal Unicode value 404 to display the same character. This is one of the most commonly used methods in HTML.

HTML markup
3

CSS Entity

\0194 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
!

Latin vs Greek Gamma

This page covers Latin Gamma (Ɣ, U+0194). The Greek letter Gamma (Γ, U+0393) has the named entity &Gamma; and appears in math and science—not the same character.

Important distinction
=

Same visual result

All three numeric methods produce the glyph: Ɣ. Unicode U+0194 is in Latin Extended-B (U+0180–U+024F). Next: Gamma Small (ɣ).

Use Cases

The Latin Gamma symbol (Ɣ) is commonly used in:

📐 Linguistics

Phonetic transcription and linguistic notation where the Latin Gamma is required.

🔤 IPA

IPA symbols in dictionaries, language learning, and academic papers.

🌍 African orthographies

Writing systems for Dagbani, Ewe, and other languages that use Latin Gamma.

📄 Academic content

Research papers, textbooks, and technical documentation.

📚 Symbol references

HTML entity lists, Unicode charts, and character documentation.

🎓 Language learning

Educational apps and sites that teach pronunciation or phonetic symbols.

💡 Best Practices

Do

  • Distinguish Latin Ɣ (U+0194) from Greek Γ (U+0393, &Gamma;)
  • Use &#404; or &#x194; consistently (no named entity)
  • Choose fonts that support Latin Extended-B for linguistics content
  • Add context or aria-label for phonetic symbols in UI
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use &Gamma; when you need Latin Gamma Ɣ
  • Expect a named entity for U+0194—none exists
  • Put CSS escape \0194 in HTML text nodes
  • Mix hex and decimal styles randomly in one project
  • Skip font checks for extended Latin character rendering

Key Takeaways

1

Two HTML numeric references plus CSS render Ɣ

&#x194; &#404;
2

For CSS stylesheets, use the escape in the content property

\0194
3

Unicode U+0194 — Latin capital letter Gamma

4

Greek Gamma is U+0393 — use &Gamma; for Γ

❓ Frequently Asked Questions

Use &#x194; (hex), &#404; (decimal), or \0194 in CSS content. There is no named entity for the Latin Gamma (Ɣ).
U+0194 (Latin capital letter Gamma). Latin Extended-B block. Hex 0194, decimal 404. Greek Gamma is U+0393 with named entity &Gamma;.
In linguistics, IPA transcriptions, African language orthographies (e.g., Dagbani, Ewe), academic papers, and character reference pages. For Greek Gamma (Γ) in math or science, use &Gamma;.
HTML references (&#404; or &#x194;) go in markup. The CSS escape \0194 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover a subset of common characters. Extended Latin letters like U+0194 use numeric codes. Greek Gamma (Γ) is an exception—it has &Gamma; because it is in the Greek block included in HTML entities.

Explore More HTML Entities!

Discover 1500+ HTML character references — linguistics symbols, extended Latin letters, 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