HTML Entity for Combining Diaeresis (̈)

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

What You'll Learn

How to display the combining diaeresis in HTML using hexadecimal, decimal, and CSS entity methods. This mark is U+0308 (COMBINING DIAERESIS) in the Combining Diacritical Marks block (U+0300–U+036F). It sits above a base letter to form characters such as ü (u + diaeresis), ö, and ä—often called umlaut in German or diaeresis in French and Spanish.

There is no named HTML entity for U+0308 alone. Use ̈, ̈, or \0308 in CSS content. For common precomposed letters, prefer ü, ö, or ä. Do not confuse with the standalone spacing character U+00A8 (¨).

⚡ Quick Reference — Combining Diaeresis

Unicode U+0308

Combining Diacritical Marks (U+0300–U+036F)

Hex Code ̈

Hexadecimal reference

HTML Code ̈

Decimal reference

Named Entity

None for U+0308 (use ü for ü)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0308
Hex code       ̈
HTML code      ̈
Named entity   —
CSS code       \0308
Precomposed    ü (U+00FC), ö, ä
1

Complete HTML Example

This example demonstrates the combining diaeresis using hexadecimal code, decimal HTML code, and a CSS content escape, plus building ü from u + combining mark:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0308";
  }
 </style>
</head>
<body>
<p>Combining diaeresis (decimal): &#776;</p>
<p id="point">Combining diaeresis via CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+0308 and combining sequences are supported in all modern browsers with UTF-8 and fonts that include Combining Diacritical Marks:

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

👀 Live Preview

See the combining diaeresis and umlaut letters in context:

Combining ü → ü
German München   schön   über
Named entities &auml; &ouml; &uuml; → ä ö ü
French Noël   naïf
Monospace refs &#x0308; &#776; \0308

🧠 How It Works

1

Hexadecimal Code

&#x0308; uses the Unicode hexadecimal value 0308 for the combining diaeresis. Place it immediately after the base letter (e.g. u&#x0308;).

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\0308 is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Combines with base letters

The mark stacks on the preceding character: renders as ü. Unicode U+0308. No named entity for the combining mark alone; use &uuml; for precomposed ü.

Use Cases

The combining diaeresis (U+0308) is commonly used in:

🇩🇪 German (umlaut)

ä, ö, ü in words like München, über, schön.

🇫🇷 French

ë, ï, ü (Noël, naïf) where vowels are pronounced separately.

🇪🇸 Spanish

ü in pingüino, vergüenza to mark pronounced u.

🌍 Multilingual / i18n

Internationalized sites, language learning apps, and mixed-language content.

📚 Linguistics

Dictionaries, academic papers, and typography docs on diacritical marks.

🔤 Entity references

HTML entity guides and Unicode tables for combining marks.

💡 Best Practices

Do

  • Prefer &uuml;, &ouml;, &auml; for common German letters
  • Use UTF-8 and fonts with Combining Diacritical Marks coverage
  • Place &#x0308; immediately after the base letter
  • Use \0308 only inside CSS content
  • Keep one encoding style consistent per document

Don’t

  • Confuse U+0308 (combining) with U+00A8 (standalone ¨)
  • Assume a named entity exists for U+0308 alone
  • Use images instead of UTF-8 or entities for umlaut letters
  • Put CSS escape \0308 in HTML text nodes
  • Mix combining and precomposed forms randomly in one word

Key Takeaways

1

Combining mark U+0308—no named entity

&#x0308; &#776;
2

For CSS, use \0308 in the content property

\0308
3

Precomposed: &uuml; ü, &ouml; ö, &auml; ä

4

Umlaut (German) and diaeresis (French/Spanish) share U+0308

5

UTF-8 + combining sequences—widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x0308; (hex), &#776; (decimal), or \0308 in CSS content after a base letter. For precomposed ü, use &uuml; or &#252;. No named entity exists for U+0308 alone.
U+0308 (COMBINING DIAERESIS). Combining Diacritical Marks block (U+0300–U+036F). Hex 0308, decimal 776. Standalone spacing diaeresis is U+00A8.
For multilingual content with umlaut/diaeresis: German (ä, ö, ü), French (ë, ï, ü), Spanish (ü), Dutch, linguistics, and i18n applications. Prefer named entities for common precomposed letters.
HTML numeric references (&#776; or &#x0308;) go in markup immediately after the base character. The CSS escape \0308 is used in stylesheets, typically in the content property of pseudo-elements.
Both refer to two dots on a vowel. German uses “umlaut” (ä, ö, ü); French and Spanish often say “diaeresis.” Unicode names the combining character COMBINING DIAERESIS (U+0308). The same mark serves both linguistic roles.

Explore More HTML Entities!

Discover 1500+ HTML character references — diacritics, 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