HTML Entity for Gamma Small (ɣ)

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

What You'll Learn

How to display the Latin small letter Gamma (ɣ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0263 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 \0263. There is no named HTML entity for this character. For the Greek small letter Gamma (γ), use γ (U+03B3). The capital form is Latin capital Gamma (Ɣ).

⚡ Quick Reference — Gamma Small

Unicode U+0263

Latin Extended-B

Hex Code ɣ

Hexadecimal reference

HTML Code ɣ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0263
Hex code       ɣ
HTML code      ɣ
Named entity   (none)
CSS code       \0263
Character      Latin small letter Gamma (ɣ)
Capital form   U+0194 = Latin Gamma (Ɣ) — see /html/entity/gamma
Not to confuse U+03B3 = Greek small gamma (γ) — use γ
1

Complete HTML Example

This example demonstrates the Latin small 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: "\0263";
  }
 </style>
</head>
<body>
<p>Gamma Small using Hexadecimal: &#x263;</p>
<p>Gamma Small using Decimal: &#611;</p>
<p id="point">Gamma Small using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Latin small 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 small Gamma (ɣ) in linguistics and language contexts:

IPA notation Voiced velar fricative ɣ in phonetic transcription
Large glyph ɣ
Orthography Dagbani / Ewe: Latin small Gamma ɣ in native spelling
Latin vs Greek Latin ɣ (U+0263) • Greek γ (U+03B3, &gamma;)
Numeric refs &#x263; &#611; \0263

🧠 How It Works

1

Hexadecimal Code

&#x263; uses the Unicode hexadecimal value 0263 to display the Latin small Gamma. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
!

Latin vs Greek small Gamma

This page covers Latin small Gamma (ɣ, U+0263). The Greek small letter gamma (γ, U+03B3) has the named entity &gamma;. Capital Latin form: Ɣ (U+0194).

Important distinction
=

Same visual result

All three numeric methods produce the glyph: ɣ. Unicode U+0263 is in Latin Extended-B (U+0180–U+024F). Next: Gear (⚙).

Use Cases

The Latin small Gamma symbol (ɣ) is commonly used in:

📐 Linguistics

Phonetic transcription and linguistic notation where the Latin small 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 small 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+0263) from Greek γ (U+03B3, &gamma;)
  • Use &#611; or &#x263; 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 small Gamma ɣ
  • Expect a named entity for U+0263—none exists
  • Put CSS escape \0263 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 ɣ

&#x263; &#611;
2

For CSS stylesheets, use the escape in the content property

\0263
3

Unicode U+0263 — Latin small letter Gamma

4

Greek small gamma is U+03B3 — use &gamma; for γ

5

Next: Gear (⚙)

❓ Frequently Asked Questions

Use &#x263; (hex), &#611; (decimal), or \0263 in CSS content. There is no named entity for the Latin small Gamma (ɣ).
U+0263 (Latin small letter Gamma). Latin Extended-B block. Hex 0263, decimal 611. Greek small gamma is U+03B3 with named entity &gamma;.
In linguistics, IPA transcriptions, African language orthographies (e.g., Dagbani, Ewe), academic papers, and character reference pages. For Greek small gamma (γ) in math or science, use &gamma;.
HTML references (&#611; or &#x263;) go in markup. The CSS escape \0263 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+0263 use numeric codes. Greek small gamma (γ) 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