HTML Entity for Lowercase D (d)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0064

What Is the Lowercase D Entity?

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.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterdHTML text (default choice)
Hex entitydHTML markup
Decimal entitydHTML markup
CSS escape\0064Stylesheet content
Named entityNoneHTML5 does not define one

When to Use Which

SituationUse
Normal paragraphs, headings, labelsType d
Need an entity in HTML sourced or d
Generated text via ::before / ::aftercontent: "\0064"
Capital letter DType D or see Uppercase D (U+0044)
Accented ďSee Lowercase D Caron (ď)

Live Preview

Lowercase d rendered in common text contexts.

Inline text The letter d follows c in the alphabet.
Large glyph d
Hex entity d → d
vs D / ď d  |  D  |  ď
With entities Hex: d | Decimal: d

Complete HTML Example

One page that shows lowercase d with the hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

All four ways to produce d in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase D (d)</title>
  <style>
    #point::after {
      content: "\0064";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x64;</p>
  <p>Using HTML Code: &#100;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: d</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+0064 → &#x64; in HTML. The browser turns it into d.

2. Decimal: same code point as 100 → &#100;. 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. &#x64; / &#100; 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 &#100;, not &#100.

Browser Support

Lowercase d (U+0064) and its numeric entity forms (&#x64;, &#100;, 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 Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0064 Full support

Bottom line: Use a typed d for normal text. Prefer &#x64; or &#100; in HTML when encoding must be explicit, and \\0064 only inside CSS content.

Key Takeaways

  • Unicode: this character is U+0064 (decimal 100).
  • HTML: type d by default — or use &#x64; / &#100;. No named entity.
  • CSS: use \0064 inside content for generated text.
  • Watch out: d ≠ D ≠ &dcaron; (ď).

One line: U+0064 → type d / &#x64; / &#100; / CSS \0064.

Frequently Asked Questions

Use &#x64; (hex), &#100; (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 &#100; or &#x64; 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 (&#100; or &#x64;) 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 (&dcaron;). 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 &#x64; or &#100; when you need an entity form. For normal body text, typing d directly is best.

Next: Lowercase D Caron

Learn the HTML entity for Lowercase D Caron — next in this sequence.

Continue tutorial →

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