HTML Entity for Uppercase C Stretched (ʗ)

What You'll Learn
How to display the uppercase C stretched (ʗ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER STRETCHED C, this IPA phonetic character is used in linguistics, phonetic notation, and International Phonetic Alphabet (IPA) transcriptions. It is U+0297 in the IPA Extensions block.
Render it with ʗ, ʗ, or CSS escape \0297. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase C Stretched Entity
U+0297IPA Extensions
ʗHexadecimal reference
ʗDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0297
Hex code ʗ
HTML code ʗ
Named entity (none)
CSS code \0297
Meaning Latin capital letter stretched C
Related U+0043 = plain C; U+0186 = reversed C (Ɔ)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the uppercase C stretched (ʗ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0297";
}
</style>
</head>
<body>
<p>Symbol (hex): ʗ</p>
<p>Symbol (decimal): ʗ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase C stretched (ʗ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase C stretched (ʗ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ʗ uses the Unicode hexadecimal value 0297 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʗ uses the decimal Unicode value 663 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\0297 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ʗ. Unicode U+0297 sits in IPA Extensions. Do not confuse ʗ with plain C (U+0043), Ɔ (reversed C), or Ƈ (C hook). There is no named HTML entity.
Use Cases
The uppercase C stretched (ʗ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the stretched-C IPA character.
International Phonetic Alphabet transcriptions, phonetic dictionaries, and language learning materials using ʗ.
Websites requiring correct rendering of IPA Extensions for phonetic and linguistic content.
Books, articles, and editorial content with phonetic scripts or IPA terminology using ʗ.
Online dictionaries and lexicographic content that include IPA symbols such as ʗ.
Correct encoding so specialized phonetic content is indexed and displayed consistently.
Educational apps and instructional content about phonetics and pronunciation using ʗ.
💡 Best Practices
Do
- Use
ʗorʗin HTML (no named entity exists) - Serve pages as UTF-8; you can also type ʗ directly in UTF-8 source
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support IPA Extensions (U+0250–U+02AF)
- Distinguish ʗ from plain
C(U+0043), Ɔ (reversed C), and Ƈ (C hook)
Don’t
- Assume a named entity exists—there is none for ʗ
- Substitute plain
Cwhen ʗ is required for phonetic accuracy - Put CSS escape
\0297in HTML text nodes - Assume all fonts render IPA Extensions glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render ʗ (no named entity)
ʗ ʗFor CSS stylesheets, use the escape in the content property
\0297Unicode U+0297 — LATIN CAPITAL LETTER STRETCHED C
Used in linguistics, IPA transcriptions, and phonetic notation
Previous: Uppercase C Reverse (Ɔ) Next: Uppercase C Stroke (Ȼ)
❓ Frequently Asked Questions
ʗ (hex), ʗ (decimal), or \0297 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0297 (LATIN CAPITAL LETTER STRETCHED C). IPA Extensions block. Hex 0297, decimal 663. Used in linguistics, IPA transcriptions, and phonetic notation.ʗ or ʗ) is used in HTML content. The CSS entity (\0297) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ʗ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.
8 people found this page helpful
