HTML Entity for Double Acute Accent (̋)

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

What You'll Learn

How to encode U+030B (combining double acute accent) in HTML and CSS. This mark combines with the preceding character—for example ő renders as ő and ű as ű (hungarumlaut in Hungarian).

It is defined in the Combining Diacritical Marks block (U+0300–U+036F). There is no named HTML entity for U+030B; use ̋, ̋, or \030B in CSS strings. Do not confuse with single combining acute accent (U+0301, ́).

⚡ Quick Reference — Double Acute Accent Entity

Unicode U+030B

Combining Diacritical Marks

Hex Code ̋

Hexadecimal reference

HTML Code ̋

Decimal reference

CSS Code \030B

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+030B
Hex code       ̋
HTML code      ̋
Named entity   (none)
CSS code       \030B
1

Complete HTML Example

This example attaches U+030B after base letters using hex, decimal, and a CSS content string (ő, ű):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "o\030B";
  }
 </style>
</head>
<body>
<p>Double acute (decimal on u): u&#779;</p>
<p id="point">Double acute (CSS entity): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references for U+030B are supported in all modern browsers. Stacking quality depends on font support for combining marks:

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

👀 Live Preview

Combining double acute on Hungarian vowels (base letter first, then U+030B):

Hungarian ő → ő   ű → ű   sző tű
Large glyph ő   ű
vs precomposed NFD: o + U+030B   NFC: ő (U+0151) — often visually identical
vs single acute U+0301 (one acute)   U+030B (double acute)
Monospace refs &#x030B; &#779; \030B

🧠 How It Works

1

Hexadecimal Code

&#x030B; references Unicode 030B in hex. Write it immediately after the base letter (for example o&#x030B;).

HTML markup
2

Decimal HTML Code

&#779; is decimal 779, equivalent to U+030B.

HTML markup
3

CSS Entity (Escape)

\030B inside a CSS string (for example content: "o\030B") emits the same combining sequence in generated content.

CSS stylesheet
=

Same visual result

With base o or u, all methods yield ő or ű. Place U+030B immediately after the base letter. No named entity for U+030B.

Use Cases

The combining double acute accent (U+030B) is commonly used in:

🇮🇼 Hungarian

Correct spelling of ő and ű (e.g. tű, sző) on Hungarian websites and apps.

🔤 Chuvash & other scripts

Languages that use the double acute in dictionaries and language-learning sites.

📚 Linguistics

Phonetic transcription and notation where double acute marks apply.

📝 Publishing

Academic papers, eBooks, and typography with decomposed diacritics.

📑 Symbol references

HTML entity lists and Unicode tables for combining marks.

🌐 i18n

Proper rendering of Hungarian and related scripts for accessibility.

💡 Best Practices

Do

  • Keep base letter and U+030B adjacent in the DOM (base first)
  • Use UTF-8 and pick NFC or NFD consistently for your product
  • For long-form Hungarian text, consider precomposed ő (U+0151) and ű (U+0171)
  • Test fonts and line-breaking so the accent does not separate from its letter
  • Use \030B only inside CSS strings, not as raw HTML text

Don’t

  • Place U+030B before the base letter (wrong order for Unicode)
  • Confuse double acute (U+030B) with single combining acute (U+0301)
  • Rely on CSS content for entire paragraphs of accented prose
  • Mix NFC and NFD arbitrarily in the same database column without a plan
  • Assume every decorative webfont positions combining marks perfectly

Key Takeaways

1

Two HTML numeric references encode U+030B after a base letter

&#x030B; &#779;
2

In CSS, use \030B after the base in a string (e.g. "o\030B")

\030B
3

U+030B is a combining mark (Mn) in U+0300–U+036F

4

No named HTML entity — use numeric references or CSS escapes

5

Hungarumlaut: ő = ő, ű = ű

❓ Frequently Asked Questions

Use &#x030B; (hex) or &#779; (decimal) after the base letter, e.g. o&#x030B; for ő. In CSS, content: "o\030B" is a common pattern. There is no standard named entity for U+030B.
U+030B (hex 030B, decimal 779). It combines with the preceding character and lives in the Combining Diacritical Marks block.
For Hungarian text (ő, ű), Chuvash and other languages, linguistic content, dictionary sites, and any page that must display the double acute correctly. Precomposed U+0151 / U+0171 are fine for static prose.
HTML references belong in markup; \030B belongs in stylesheet strings. Same code point, different layer.
Hungarumlaut is the typographer’s name for the double acute in Hungarian (kettős éles ékezet). It appears on Ő/ő and Ű/ű. The combining character is U+030B.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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