HTML Entity for Latin Letter Pharyngeal Voiced Fricative (ʕ)

What You'll Learn
How to display ʕ (LATIN LETTER PHARYNGEAL VOICED FRICATIVE) in HTML using hexadecimal, decimal, and CSS escape methods. Despite the URL slug question-mark-reverse, this character is not the Spanish inverted question mark — it is an IPA symbol for a voiced pharyngeal fricative (often used for Arabic ain).
It is U+0295 in the IPA Extensions block (U+0250–U+02AF). Use ʕ, ʕ, or CSS \0295. There is no named HTML entity. For ¿ (¿), see Inverted Question Mark (U+00BF, ¿).
⚡ Quick Reference — Pharyngeal Voiced Fricative
U+0295IPA Extensions
ʕHexadecimal reference
ʕDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0295
Hex code ʕ
HTML code ʕ
Named entity (none)
CSS code \0295
Meaning Latin letter pharyngeal voiced fricative (ʕ)
Related U+0294 = Latin letter glottal stop (ʔ)
U+00BF = Inverted question mark (¿)
U+0127 = Latin small letter h with stroke (ħ)
Block IPA Extensions (U+0250–U+02AF)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: "\0295";
}
</style>
</head>
<body>
<p>Hex: ʕ</p>
<p>Decimal: ʕ</p>
<p>CSS: <span id="point"></span></p>
</body>
</html>🌐 Browser Support
ʕ renders when fonts include IPA Extensions (U+0250–U+02AF):
👀 Live Preview
See ʕ rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
ʕ uses the Unicode hexadecimal value 0295 to display the pharyngeal voiced fricative letter.
Decimal HTML Code
ʕ uses the decimal Unicode value 661 to display the same character.
CSS Entity
\0295 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ʕ. Unicode U+0295 in IPA Extensions (U+0250–U+02AF). No named HTML entity exists.
Use Cases
The Latin letter pharyngeal voiced fricative (ʕ) commonly appears in:
Voiced pharyngeal fricative in phonetic transcription.
Romanization of Arabic ain (ع) and related sounds.
Academic papers, textbooks, and Semitic language studies.
Pronunciation guides for Arabic, Hebrew, and related languages.
Character pickers and IPA Extensions documentation.
HTML entity encoding examples for phonetic symbols.
Pair ʕ with a phonetic description for screen readers.
💡 Best Practices
Do
- Use
ʕorʕfor the ʕ glyph - Link readers to inverted-question-mark for ¿ (U+00BF)
- Distinguish ʕ from ʔ (glottal stop) in IPA notation
- Use IPA or linguistics fonts for professional transcription
- Test rendering across browsers and devices
Don’t
- Assume this is the Spanish inverted question mark — that is U+00BF (¿)
- Substitute ¿ or
¿when ʕ is intended - Assume a named entity exists—there is none
- Use CSS escape
\0295inside HTML text nodes - Use HTML entities in JS (use
\u0295instead)
Key Takeaways
Two HTML numeric references render ʕ
ʕ ʕFor CSS stylesheets, use the escape in the content property
\0295Unicode U+0295 is LATIN LETTER PHARYNGEAL VOICED FRICATIVE
For ¿ use U+00BF with ¿
Previous: Latin Letter Glottal Stop (ʔ) Next: Question Mark Reversed Stop Stroke
❓ Frequently Asked Questions
ʕ (hex), ʕ (decimal), or \0295 in CSS content. There is no named HTML entity for this symbol.U+0295 (LATIN LETTER PHARYNGEAL VOICED FRICATIVE). IPA Extensions block. Hex 0295, decimal 661.¿ on the inverted-question-mark page.ʕ or ʕ, or the CSS escape \0295.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
