HTML Entity for Dot Above (˙)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0307

What You'll Learn

How to display the Combining Dot Above in HTML using hexadecimal, decimal, and CSS entity methods. This mark is U+0307 (COMBINING DOT ABOVE) in the Combining Diacritical Marks block (U+0300–U+036F). It places a dot above a base letter (e.g. ) and is used in linguistics, phonetic transcription, Lithuanian, Old Irish, and mathematical notation.

There is no named HTML entity for U+0307. Use ̇, ̇, or \0307 in CSS content immediately after the base letter. A related standalone character is U+02D9 (˙, ˙ or ˙)—a spacing modifier letter, not a combining mark.

⚡ Quick Reference — Dot Above

Unicode U+0307

Combining Diacritical Marks block

Hex Code ̇

Hexadecimal reference

HTML Code ̇

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0307
Hex code       ̇
HTML code      ̇
Named entity   —
CSS code       \0307
1

Complete HTML Example

This example demonstrates the combining dot above using hexadecimal code, decimal HTML code, and a CSS content escape, plus attaching the mark to a base letter:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0307";
  }
 </style>
</head>
<body>
<p>Dot Above using Hexadecimal: &#x0307;</p>
<p>Dot Above using HTML Code: &#775;</p>
<p id="point">Dot Above using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+0307 and combining sequences are supported in modern browsers with UTF-8 and fonts that render Combining Diacritical Marks (U+0300–U+036F):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the combining dot above on base letters:

On letters ė   ṅ   ȧ
Combining vs standalone ė (U+0307)   ˙ (U+02D9)
Isolated mark ̇
Monospace refs &#x0307; &#775; \0307

🧠 How It Works

1

Hexadecimal Code

&#x0307; uses the Unicode hexadecimal value 0307 for the combining dot above. Place it immediately after the base letter.

HTML markup
2

Decimal HTML Code

&#775; uses the decimal Unicode value 775 to display the same combining mark.

HTML markup
3

CSS Entity

\0307 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Combines above the base letter

The mark stacks above the preceding character: . Unicode U+0307. No named entity. Standalone U+02D9 (˙) uses &#729; or &#x02D9;.

Use Cases

The combining dot above (U+0307) is commonly used in:

🔤 Linguistics

Phonetics, morphology, and language documentation with dot-above diacritics.

📚 Language learning

Dictionary and course sites for Lithuanian, Old Irish, and related orthographies.

📝 Typography

Academic publishing and specialized fonts for diacritical marks.

📐 Mathematics

Derivative dot notation and technical symbols in STEM content.

📝 Character references

HTML entity guides for combining marks and special characters.

📑 Entity guides

Complete references for displaying diacritical marks in HTML.

💡 Best Practices

Do

  • Place &#x0307; or &#775; immediately after the base letter
  • Use UTF-8 and fonts with Combining Diacritical Marks coverage
  • Use phonetic fonts (Charis SIL, Doulos SIL, Noto Sans) when possible
  • Use \0307 in CSS content for generated accents
  • Pick one numeric style (hex or decimal) per project

Don’t

  • Confuse U+0307 (combining) with U+02D9 (standalone ˙)
  • Expect a named HTML entity (none exists for U+0307)
  • Put the combining mark before the base letter
  • Use CSS escape \0307 inside HTML markup
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

Combining mark U+0307—no named entity

&#x0307; &#775;
2

For CSS, use \0307 in the content property

\0307
3

COMBINING DOT ABOVE—dot stacks on the letter (ė)

4

Standalone U+02D9 uses &#729; or &#x02D9;

5

UTF-8 + correct letter order—widely supported with suitable fonts

❓ Frequently Asked Questions

Use &#x0307; (hex), &#775; (decimal), or \0307 in CSS content immediately after the base letter. For standalone U+02D9, use &#x02D9; or &#729;. There is no named HTML entity for U+0307.
U+0307 (COMBINING DOT ABOVE). Combining Diacritical Marks block (U+0300–U+036F). Hex 0307, decimal 775. Standalone dot above is U+02D9 (decimal 729).
For linguistic and phonetic content, diacritical marks in language-learning or dictionary sites, typography and academic publishing, mathematical notation (derivative dot), and any content that requires a dot-above diacritic.
U+0307 attaches above the preceding letter (ė). U+02D9 (˙) is a standalone spacing modifier letter. Use U+0307 for diacritics on letters; use U+02D9 when you need the modifier on its own.
HTML5 named entities do not include combining diacritical marks. Use &#775; or &#x0307; in HTML, or \0307 in CSS. This is standard for characters in the Combining Diacritical Marks block.

Explore More HTML Entities!

Discover 1500+ HTML character references — combining marks, symbols, math operators, and more.

All HTML Entities →

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