HTML Entity for Lowercase D Curl (ȡ)

What You'll Learn
How to display the lowercase d with curl (ȡ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin small letter d with curl, used in IPA and Sinological phonetic notation for the voiced alveolo-palatal plosive and in Chinese language studies. It is U+0221 in the Latin Extended-B block.
Render it with ȡ, ȡ, or CSS escape \0221. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase D Curl Entity
U+0221Latin Extended-B
ȡHexadecimal reference
ȡDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0221
Hex code ȡ
HTML code ȡ
Named entity (none)
CSS code \0221
Meaning Latin small letter d with curl
IPA usage Voiced alveolo-palatal plosive
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase d curl (ȡ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0221";
}
</style>
</head>
<body>
<p>Symbol (hex): ȡ</p>
<p>Symbol (decimal): ȡ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase d curl (ȡ) renders correctly in modern browsers when UTF-8 is used and a font with Latin Extended-B support is available:
👀 Live Preview
See the lowercase d curl (ȡ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ȡ uses the Unicode hexadecimal value 0221 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȡ uses the decimal Unicode value 545 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0221 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+0221 sits in Latin Extended-B. Do not confuse ȡ with plain d (U+0064) or ď (d caron, U+010F). There is no named HTML entity.
Use Cases
The lowercase d curl (ȡ) is commonly used in:
Display IPA symbols in language and phonetics articles (e.g. ȡ for voiced alveolo-palatal plosive).
Show correct pronunciation in dictionaries and language learning resources.
Represent phonetic transcriptions in linguistics and language research.
Represent ȡ in Chinese language phonetic transcription and Sinological resources.
Showcase extended Latin and IPA characters in font specimens.
Document IPA and extended Latin character sets on Unicode reference sites.
Support proper rendering of minority languages that use this character.
💡 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
- Use IPA-aware or Unicode-complete fonts for reliable glyph rendering
- Provide context (e.g. IPA notation) when using phonetic symbols
- Distinguish ȡ from plain
dand from ď (d caron)
Don’t
- Assume a named entity exists—there is none for ȡ
- Substitute plain
dwhen ȡ is required for phonetic accuracy - Put CSS escape
\0221in HTML text nodes - Assume all fonts render Latin Extended-B 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
\0221Unicode U+0221 — LATIN SMALL LETTER D WITH CURL
IPA voiced alveolo-palatal plosive; used in Sinological and linguistic notation
Previous: Lowercase D Caron (ď) Next: Lowercase D Hook
❓ Frequently Asked Questions
ȡ (hex), ȡ (decimal), or \0221 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0221 (LATIN SMALL LETTER D WITH CURL). Latin Extended-B block. Hex 0221, decimal 545. Used in IPA and Sinological phonetic notation for the voiced alveolo-palatal plosive.ȡ or ȡ) is used in HTML content. The CSS entity (\0221) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ȡ but in different contexts.ȡ or ȡ in HTML, or \0221 in CSS. This is standard for phonetic and extended Latin characters.Explore More HTML Entities!
Discover 1500+ HTML character references — IPA symbols, accented letters, and more.
8 people found this page helpful
