HTML Entity for Dot Above (˙)

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

What Is Dot Above?

Dot above (˙) is the Unicode character at U+02D9 in the Spacing Modifier Letters block. Official name: DOT ABOVE. It is a spacing glyph — it takes its own width and does not combine onto the previous letter.

Remember
Character     ˙
Unicode       U+02D9
Named entity  ˙
Hex entity    ˙
Decimal       ˙
CSS escape    \02D9
Not the same  ̇ · · · ¨

Prefer ˙ in HTML markup. You can also type ˙ in UTF-8, or use numeric forms when needed. To attach a dot to a letter, use combining U+0307 (for example ė → ė).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity˙HTML markup (preferred)
Direct character˙HTML text (UTF-8)
Hex entity˙HTML markup
Decimal entity˙HTML markup
CSS escape\02D9Stylesheet content

When to Use Which

SituationUse
Standalone spacing dot above˙ or type ˙
Dot attached to a letterCombining U+0307 — e.g. ė
Middle / interpunct dot· / ·
Combining diaeresis (two dots)̈ / ̈
Generated text via ::before / ::aftercontent: "\02D9"

Live Preview

Dot above rendered next to common lookalikes.

Standalone ˙
Large glyph ˙
Compared ˙   ė   ·   ¨
With entities Named: ˙ | Hex: ˙ | Decimal: ˙

Complete HTML Example

One page that shows Dot Above with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce ˙, plus a combining comparison.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Dot Above (˙) in HTML</title>
  <style>
    #point::after {
      content: "\02D9";
    }
  </style>
</head>
<body>
  <p>Symbol using Named Entity: &dot;</p>
  <p>Symbol using Hex Code: &#x02D9;</p>
  <p>Symbol using HTML Code: &#729;</p>
  <p id="point">Symbol using CSS Entity: </p>
  <p>Typed directly: ˙</p>
  <p>Spacing &dot; vs combining: e&#x0307;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &dot; is the HTML5 name for U+02D9 → ˙. Best default in markup.

2. Hex: U+02D9 → &#x02D9; in HTML. Same glyph as the named form.

3. Decimal: same code point as 729 → &#729;. Same result as hex and named.

4. CSS: use \02D9 in content (not an HTML entity). #point::after appends that ˙ after the paragraph text.

5. Typed / compare: paste ˙ in UTF-8 for the spacing form. Use e&#x0307; when the dot must sit on the letter.

Pitfalls & Tips

Common mistakes when working with Dot Above.

̇

Spacing vs combining

&dot; (˙) stands alone. Combining U+0307 attaches to the previous character.

·

Not middle dot

· (&middot;) sits on the baseline. ˙ is a high spacing modifier.

Name

&dot; is not period

&dot; is U+02D9. The sentence period is . (U+002E). Do not confuse them.

CSS vs HTML

Do not mix escapes

\02D9 belongs in CSS strings. &dot; / &#x02D9; / &#729; belong in HTML.

Fonts

Modifier font coverage

Some fonts omit U+02D9. Prefer a font with Spacing Modifier Letters coverage for display.

Semicolon

End references

Always finish with ; — write &dot;, not &dot.

Browser Support

Dot above (U+02D9) and its entity forms (&dot;, &#x02D9;, &#729;, CSS \\02D9) are supported in all mainstream browsers. Visible glyphs depend on modifier font coverage.

✓ Universal support

Dot Above (&#x02D9;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

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+02D9 / entities Full support

Bottom line: Prefer &dot; in HTML. Use &#x02D9; or &#729; when numeric form is required, and \\02D9 only inside CSS content.

Key Takeaways

  • Unicode: dot above is U+02D9 (decimal 729) — glyph ˙.
  • HTML: prefer &dot;, or use &#x02D9; / &#729; / type ˙.
  • CSS: use \02D9 inside content for generated text.
  • Meaning: ˙ = spacing — use U+0307 to combine on a letter; not ·.

One line: U+02D9 → &dot; / &#x02D9; / &#729; / CSS \02D9 / type ˙.

Frequently Asked Questions

Use &dot; (named), &#x02D9; (hex), &#729; (decimal), type ˙ directly in UTF-8, or the CSS escape \02D9 in content. Prefer &dot; in normal HTML.
U+02D9 (DOT ABOVE). Hex 02D9, decimal 729. It belongs to the Spacing Modifier Letters block (U+02B0–U+02FF).
Yes. Use &dot;. Numeric forms &#729; and &#x02D9; also work.
Use U+02D9 (&dot;) as a standalone spacing glyph. Use combining U+0307 (&#x0307;) when the dot must attach to a base letter (e.g. ė).
HTML entities (&dot;, &#729;, or &#x02D9;) go in markup. The CSS escape \02D9 goes in stylesheet strings (usually content on ::before/::after).
No. ˙ (&dot;) is dot above. · is middle dot (U+00B7, &middot;). ¨ is diaeresis (U+00A8). They are different characters.

Did you know?

Dot above is Unicode U+02D9 (decimal 729) — glyph ˙ in the Spacing Modifier Letters block. HTML5 names it &dot;. It is a spacing character. To put a dot on a letter, use combining U+0307 (&#x0307;), for example e&#x0307; → ė.

Next: Dot Above Right

Learn the HTML entity for combining dot above right (U+0358).

Dot Above Right 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