HTML Entity for Combining Latin Small Letter D (ͩ)

What You'll Learn
How to display the combining Latin small letter d (ͩ) in HTML using hexadecimal, decimal, and CSS escape methods. Unlike a standalone letter, this is a nonspacing combining mark that appears above a base character—commonly used in linguistic notation and phonetic transcription. It is U+0369 in the Combining Diacritical Marks block.
Render it with ͩ, ͩ, or CSS escape \0369. Place the mark immediately after the base character (e.g. aͩ). There is no named HTML entity for this character.
⚡ Quick Reference — Combining Latin Small Letter D
U+0369Combining Diacritical Marks
ͩHexadecimal reference
ͩDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0369
Hex code ͩ
HTML code ͩ
Named entity (none)
CSS code \0369
Meaning Combining Latin small letter d
Type Nonspacing combining mark
Block Combining Diacritical Marks (U+0300–U+036F)Complete HTML Example
A simple example showing the combining Latin small letter d (ͩ) on its own and combined with a base letter, plus a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0369";
}
</style>
</head>
<body>
<p>Combined: aͩ</p>
<p>Symbol (hex): ͩ</p>
<p>Symbol (decimal): ͩ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The combining Latin small letter d (ͩ) renders correctly in modern browsers when UTF-8 is used and a font with Combining Diacritical Marks support is available:
👀 Live Preview
See the combining Latin small letter d (ͩ) alone and combined with a base character:
🧠 How It Works
Hexadecimal Code
ͩ uses the Unicode hexadecimal value 0369 to display the combining mark. The x prefix indicates hexadecimal format.
Decimal HTML Code
ͩ uses the decimal Unicode value 873 to display the same character. A common method for combining marks.
CSS Entity
\0369 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce ͩ. As a combining mark, place it after a base character (e.g. aͩ) so it renders above the letter. Unicode U+0369 is not the same as plain d (U+0064). There is no named HTML entity.
Use Cases
The combining Latin small letter d (ͩ) is commonly used in:
Phonetic or phonological notation where a small d above a base character is required.
IPA and other systems that use combining diacritical marks in transcription.
Reproduce historical or critical text with combining marks in academic publications.
Showcase combining dharacter support in font demos and type design.
Reference or demonstrate the Combining Diacritical Marks block in technical docs.
Display headwords or pronunciation guides that use combining dharacters.
Test correct rendering of combining marks across browsers and platforms.
💡 Best Practices
Do
- Place ͩ immediately after the base character (e.g.
aͩ) - Use
ͩorͩin HTML (no named entity exists) - Serve pages as UTF-8; you can also type the mark directly in UTF-8 source
- Use fonts that support Combining Diacritical Marks
- Distinguish ͩ from plain
dand from standalone letter variants
Don’t
- Assume a named entity exists—there is none for ͩ
- Put the combining mark before the base character (wrong order breaks positioning)
- Substitute plain
dwhen a combining mark is required - Put CSS escape
\0369in HTML text nodes - Assume all fonts render combining marks identically
Key Takeaways
Three references render ͩ (no named entity)
ͩ ͩPlace after base character: aͩ shows d above a
\0369Unicode U+0369 — COMBINING LATIN SMALL LETTER D
Nonspacing combining mark in the Combining Diacritical Marks block
Previous: Lowercase D Hook (ɗ) Next: Lowercase D Stroke
❓ Frequently Asked Questions
ͩ (hex), ͩ (decimal), or \0369 in CSS content. Place the mark immediately after the base character (e.g. aͩ). There is no named HTML entity.U+0369 (COMBINING LATIN SMALL LETTER D). Combining Diacritical Marks block. Hex 0369, decimal 873. It is a nonspacing mark that combines with the preceding base character.ͩ or ͩ) is used in HTML content. The CSS entity (\0369) 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, symbols, and more.
8 people found this page helpful
