HTML Entity for Qp Digraph (ȹ)

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

What You'll Learn

How to display the qp digraph letter (ȹ) in HTML using hexadecimal, decimal, and CSS escape methods. This is U+0239 (LATIN SMALL LETTER QP DIGRAPH)—a single character representing the qp sound in phonetic and orthographic notation.

It belongs to the Latin Extended-B Unicode block and can be rendered with ȹ, ȹ, or CSS \0239. There is no named HTML entity. Do not confuse ȹ with typing plain qp as two separate letters.

⚡ Quick Reference — Qp Digraph

Unicode U+0239

Latin Extended-B block

Hex Code ȹ

Hexadecimal reference

HTML Code ȹ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0239
Hex code       ȹ
HTML code      ȹ
Named entity   (none)
CSS code       \0239
Official name  Latin small letter qp digraph
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: "\0239";
  }
 </style>
</head>
<body>
<p>Digraph (hex): &#x0239;a</p>
<p>Digraph (decimal): &#569;a</p>
<p>Digraph (CSS): <span id="point"></span>a</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The qp digraph is widely supported when fonts include Latin Extended-B (U+0180–U+024F):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ȹ rendered live in different contexts:

Inline word ȹat (qp digraph + a)
Large glyph ȹ
Not the same as Plain “qp” (two characters)
Phonetic use Digraph letter in African orthographies
Numeric refs &#x0239; &#569; \0239

🧠 How It Works

1

Hexadecimal Code

&#x0239; uses the Unicode hexadecimal value 0239 to display the qp digraph letter.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: ȹ. Unicode U+0239 in Latin Extended-B (U+0180–U+024F). No named HTML entity exists.

Use Cases

The qp digraph letter (ȹ) commonly appears in:

🗣️ Phonetics

IPA and phonetic transcription referencing the qp digraph sound.

🌍 African Orthographies

Written forms of languages that use the qp digraph as a single letter.

📖 Linguistics

Academic texts on phonology, orthography, and digraph notation.

📄 Language Resources

Dictionaries, grammars, and online language-learning content.

📋 Unicode References

Character pickers and Latin Extended-B documentation.

🎓 Education

University courses teaching Unicode and world writing systems.

♿ Accessibility

Pair ȹ with a phonetic description for screen reader clarity.

💡 Best Practices

Do

  • Use &#x0239; or &#569; for the dedicated digraph glyph
  • Choose fonts with Latin Extended-B coverage for reliable rendering
  • Pick one style (hex or decimal) per project
  • Add accessible phonetic context alongside the character
  • Test rendering across browsers and multilingual fonts

Don’t

  • Substitute plain “qp” when ȹ is the intended digraph letter
  • Assume a named entity exists—there is none for ȹ
  • Use CSS escape \0239 inside HTML text nodes
  • Use HTML entities in JS (use \u0239 instead)
  • Confuse this with uppercase Q or P characters

Key Takeaways

1

Two HTML numeric references render ȹ

&#x0239; &#569;
2

For CSS stylesheets, use the escape in the content property

\0239
3

Unicode U+0239 is Latin small letter qp digraph (Latin Extended-B)

4

No named HTML entity—use numeric codes or CSS escape only

❓ Frequently Asked Questions

Use &#x0239; (hex), &#569; (decimal), or \0239 in CSS content. There is no named HTML entity for this character.
U+0239 (LATIN SMALL LETTER QP DIGRAPH). Latin Extended-B block. Hex 0239, decimal 569.
No. Use numeric references &#x0239; or &#569;, or the CSS escape \0239.
No. ȹ is a single Unicode digraph letter (U+0239), not two separate characters q and p.
In phonetic notation, African language orthographies, linguistic references, and Unicode character guides.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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