HTML Entity for Rams Horn (ɤ)

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

What You'll Learn

How to display the Rams horn (ɤ) character in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0264 (LATIN SMALL LETTER RAMS HORN) in Latin Extended-B (U+0180–U+024F).

Render it with ɤ, ɤ, or CSS escape \0264. There is no named HTML entity. Rams horn appears in IPA notation and in orthographies for several African languages. Do not confuse ɤ with U+0263 (ɣ, Latin small letter gamma) or U+0265 (ɥ, Latin small letter turned h).

⚡ Quick Reference — Rams Horn

Unicode U+0264

Latin Extended-B (U+0180–U+024F)

Hex Code ɤ

Hexadecimal reference

HTML Code ɤ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0264
Hex code       ɤ
HTML code      ɤ
Named entity   (none)
CSS code       \0264
Meaning        Latin small letter rams horn
Uppercase      U+0243 = Ƀ
Related        U+0263 = gamma (ɣ)
               U+0265 = turned h (ɥ)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing ɤ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\0264";
  }
 </style>
</head>
<body>
<p>Rams horn (hex): &#x0264;</p>
<p>Rams horn (decimal): &#612;</p>
<p id="point">Rams horn (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Rams horn (ɤ) is supported in modern browsers when the font includes Latin Extended-B:

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

👀 Live Preview

See Rams horn (ɤ) in phonetic and typography contexts:

Large glyph ɤ
Lower / upper ɤ Ƀ
IPA context /ɤ/ close-mid back unrounded vowel
Not the same as Gamma ɣ  |  Turned h ɥ
Numeric refs &#x0264; &#612; \0264

🧠 How It Works

1

Hexadecimal Code

&#x0264; uses the Unicode hexadecimal value 0264 to display the rams horn character.

HTML markup
2

Decimal HTML Code

&#612; uses the decimal Unicode value 612 to display the same character.

HTML markup
3

CSS Entity

\0264 is used in CSS stylesheets, typically in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ɤ. Unicode U+0264 is in Latin Extended-B. There is no named HTML entity. Next: Ratio.

Use Cases

Rams horn (ɤ) is commonly used in:

💬 IPA notation

Phonetic transcription and linguistics pages showing vowel symbols.

🌎 African languages

Orthography in web content for languages that use ɤ in spelling.

📚 Language learning

Textbooks and resources teaching pronunciation with IPA characters.

📋 Linguistics

Phonology articles, vowel charts, and character reference tables.

📖 Typography

Font testing and examples demonstrating Latin Extended-B support.

📝 Documentation

Unicode reference pages and HTML entity tutorials for extended Latin letters.

💡 Best Practices

Do

  • Use numeric references (&#x0264; or &#612;) in HTML for portability
  • Use \0264 in CSS content when inserting via pseudo-elements
  • Ensure your font supports Latin Extended-B for consistent rendering
  • Set <meta charset="utf-8"> for reliable character display
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ɤ with gamma ɣ or turned h ɥ
  • Use padded Unicode notation like U+00264—the correct value is U+0264
  • Put the CSS escape \0264 directly in HTML text nodes
  • Assume every font shows ɤ correctly—test on mobile devices
  • Strip extended Latin letters during text processing or search indexing

Key Takeaways

1

Three references render ɤ (no named entity)

&#x0264; &#612;
2

For CSS stylesheets, use the escape in the content property

\0264
3

Unicode U+0264 — LATIN SMALL LETTER RAMS HORN

4

Uppercase counterpart: Ƀ (U+0243)

5

Previous: Radioactive Sign (☢)   Next: Ratio

❓ Frequently Asked Questions

Use &#x0264; (hex), &#612; (decimal), or \0264 in CSS content. All produce ɤ. There is no named HTML entity.
U+0264 (LATIN SMALL LETTER RAMS HORN). Hex 0264, decimal 612. Uppercase Ƀ (U+0243).
No. ɤ (U+0264) is LATIN SMALL LETTER RAMS HORN. ɣ (U+0263) is LATIN SMALL LETTER GAMMA. They are adjacent but distinct Unicode characters.
In IPA phonetic transcription, African language orthography, linguistics and phonology documentation, Unicode reference pages, and typography examples for Latin Extended-B.
Extended Latin letters like U+0264 are not part of the named HTML entity set. Numeric references and CSS escapes are the standard way to render ɤ.

Explore More HTML Entities!

Discover 1500+ HTML character references — 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