HTML Entity for Rams Horn (ɤ)

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
U+0264Latin Extended-B (U+0180–U+024F)
ɤHexadecimal reference
ɤDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing ɤ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\0264";
}
</style>
</head>
<body>
<p>Rams horn (hex): ɤ</p>
<p>Rams horn (decimal): ɤ</p>
<p id="point">Rams horn (CSS): </p>
</body>
</html>🌐 Browser Support
Rams horn (ɤ) is supported in modern browsers when the font includes Latin Extended-B:
👀 Live Preview
See Rams horn (ɤ) in phonetic and typography contexts:
🧠 How It Works
Hexadecimal Code
ɤ uses the Unicode hexadecimal value 0264 to display the rams horn character.
Decimal HTML Code
ɤ uses the decimal Unicode value 612 to display the same character.
CSS Entity
\0264 is used in CSS stylesheets, typically in the content property of pseudo-elements.
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:
Phonetic transcription and linguistics pages showing vowel symbols.
Orthography in web content for languages that use ɤ in spelling.
Textbooks and resources teaching pronunciation with IPA characters.
Phonology articles, vowel charts, and character reference tables.
Font testing and examples demonstrating Latin Extended-B support.
Unicode reference pages and HTML entity tutorials for extended Latin letters.
💡 Best Practices
Do
- Use numeric references (
ɤorɤ) in HTML for portability - Use
\0264in CSScontentwhen 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
\0264directly 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
Three references render ɤ (no named entity)
ɤ ɤFor CSS stylesheets, use the escape in the content property
\0264Unicode U+0264 — LATIN SMALL LETTER RAMS HORN
Uppercase counterpart: Ƀ (U+0243)
Previous: Radioactive Sign (☢) Next: Ratio
❓ Frequently Asked Questions
ɤ (hex), ɤ (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).Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
