Lowercase d (d) is the Basic Latin character at Unicode U+0064 (LATIN SMALL LETTER D). You can type d directly in HTML, or write it with a numeric character reference when you need an explicit entity form.
Remember
Character d
Unicode U+0064
Hex entity d
Decimal d
CSS escape \0064
Named entity (none)
All of these produce the same glyph: d. Prefer typing d in normal page text; use entities for CSS content, generated markup, or when encoding must be explicit.
Using Hex Code: d
Using HTML Code: d
Using CSS Entity: d
Typed directly: d
How It Works
1. Hex:U+0064 → d in HTML. The browser turns it into d.
2. Decimal: same code point as 100 → d. Same result as hex.
3. CSS: use \0064 in content (not an HTML entity). #point::after appends that d after the paragraph text.
4. Typed d: best for normal text. All four lines show the same letter.
Pitfalls & Tips
Common mistakes when working with lowercase d.
Named?
No &d;
HTML5 does not define a named entity for ASCII letters. Use numeric forms when needed.
Default
Type d when you can
Entities are for encoding needs — not required for ordinary body text.
Look-alikes
Not D or ď
Uppercase D is U+0044. Accented ď is U+010F. Keep case and accents distinct.
CSS vs HTML
Do not mix escapes
\0064 belongs in CSS. d / d belong in HTML.
CSS tip
Prefer padded escapes
Use \0064 (not bare \64 before digits) so the next character is not absorbed into the escape.
Semicolon
End references
Always finish with ; — write d, not d.
Compatibility
Browser Support
Lowercase d (U+0064) and its numeric entity forms (d, d, CSS \\0064) are supported in all mainstream browsers.
✓ Universal support
Lowercase D (d)
Type d, or encode with hex, decimal, or CSS escape — same glyph everywhere.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+0064Full support
Bottom line: Use a typed d for normal text. Prefer d or d in HTML when encoding must be explicit, and \\0064 only inside CSS content.
Remember
Key Takeaways
Unicode: this character is U+0064 (decimal 100).
HTML: type d by default — or use d / d. No named entity.
CSS: use \0064 inside content for generated text.
Watch out:d ≠ D ≠ ď (ď).
One line:U+0064 → type d / d / d / CSS \0064.
Frequently Asked Questions
Use d (hex), d (decimal), or the CSS escape \0064 in the content property. All render d. In most cases you can also type d directly.
U+0064 (LATIN SMALL LETTER D). Hex 64, decimal 100. It belongs to the Basic Latin (ASCII) block.
No. ASCII letters like d do not have named HTML entities in HTML5. Use numeric references like d or d when you need an entity form.
Use entities when generating content in CSS, when you want explicit encoding, or when outputting into contexts where escaping is required. For normal body text, typing d directly is usually best.
HTML entities (d or d) go in markup. The CSS escape \0064 is used in stylesheets (usually in the content property of ::before/::after). Both render d.
No. Uppercase D is U+0044. Lowercase d with caron (ď) is U+010F (ď). They are different characters.
🤔
Did you know?
Lowercase d is Unicode U+0064 (decimal 100) — LATIN SMALL LETTER D in Basic Latin. HTML5 has no named entity for it — use d or d when you need an entity form. For normal body text, typing d directly is best.