HTML Entity for DB Digraph (ȸ)

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

What You'll Learn

How to display the DB digraph (ȸ) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+0238 (LATIN SMALL LETTER DB DIGRAPH) in the Latin Extended-B block (U+0180–U+024F), used in phonetic transcription and linguistic notation as a single digraph glyph rather than separate d and b letters.

There is no named HTML entity for U+0238. Use ȸ, ȸ, or \0238 in CSS content. See also DZ Digraph (ʤ) for another IPA-style digraph character.

⚡ Quick Reference — DB Digraph

Unicode U+0238

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

Hex Code ȸ

Hexadecimal reference

HTML Code ȸ

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0238
Hex code       ȸ
HTML code      ȸ
Named entity   —
CSS code       \0238
1

Complete HTML Example

This example demonstrates the DB digraph (ȸ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0238";
  }
 </style>
</head>
<body>
<p>DB Digraph using Hexadecimal: &#x0238;</p>
<p>DB Digraph using HTML Code: &#568;</p>
<p id="point">DB Digraph using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+0238 is supported in modern browsers; use a font with Latin Extended-B coverage for consistent glyph display:

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

👀 Live Preview

See the DB digraph (ȸ) in phonetic and linguistic contexts:

Digraph Single glyph: ȸ
vs letters ȸ (digraph)   db (two letters)
Notation Phonetic symbol ȸ in linguistic text
Large glyph ȸ
Monospace refs &#x0238; &#568; \0238

🧠 How It Works

1

Hexadecimal Code

&#x0238; uses the Unicode hexadecimal value 0238 to display the DB digraph. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\0238 is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the DB digraph: ȸ. Unicode U+0238 is in Latin Extended-B (U+0180–U+024F). No named HTML entity exists.

Use Cases

The DB digraph (ȸ) is commonly used in:

🔤 Phonetic transcription

IPA and phonetic notation where the db digraph appears as a single character.

📚 Linguistics

Academic content on digraphs, ligatures, and special character sets in language documentation.

📖 Dictionaries

Dictionary entries and reference works that use the db digraph as a distinct glyph.

🎓 Education

Tutorials on Unicode, Latin Extended-B, and special characters for language and typography.

📄 Unicode references

Character maps, HTML entity lists, and documentation for Latin Extended-B digraphs.

✍️ Typography

Content requiring the db ligature/digraph as one glyph in specialized typography.

💡 Best Practices

Do

  • Use &#x0238; or &#568; since no named entity exists
  • Choose fonts with Latin Extended-B coverage (Charis SIL, Noto Sans)
  • Use ȸ when you need one digraph glyph, not separate d + b
  • Use \0238 only inside CSS content
  • Keep hex or decimal style consistent across the document

Don’t

  • Confuse ȸ (single digraph) with the two-letter sequence “db”
  • Assume a named entity exists—U+0238 has none
  • Rely on fonts that omit Latin Extended-B (glyph may show as a box)
  • Put CSS escape \0238 in HTML text nodes
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x0238; &#568;
2

For CSS stylesheets, use the escape in the content property

\0238
3

U+0238 LATIN SMALL LETTER DB DIGRAPH

4

Latin Extended-B block—phonetic and linguistic notation

5

Three methods, one glyph — widely supported in modern browsers with suitable fonts

❓ Frequently Asked Questions

Use &#x0238; (hex), &#568; (decimal), or \0238 in CSS content. There is no named HTML entity. All produce ȸ.
U+0238 (LATIN SMALL LETTER DB DIGRAPH). Latin Extended-B (U+0180–U+024F). Hex 0238, decimal 568.
In phonetic transcription, linguistic and phonological content, dictionary entries, and any content that needs ȸ as a single character rather than separate d and b.
HTML5 named entities focus on commonly used characters. U+0238 is a specialized phonetic character in Latin Extended-B with no named entity. Use &#568; or &#x0238; in HTML.
HTML numeric references (&#568; or &#x0238;) go in markup. The CSS escape \0238 is used in stylesheets, typically in the content property of pseudo-elements. Both render ȸ.

Explore More HTML Entities!

Discover 1500+ HTML character references — digraphs, IPA symbols, math operators, 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