HTML Entity for Double Acute Accent (̋)

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
U+030BCombining Diacritical Marks
̋Hexadecimal reference
̋Decimal reference
\030BUse in CSS content
Name Value
──────────── ──────────
Unicode U+030B
Hex code ̋
HTML code ̋
Named entity (none)
CSS code \030BComplete HTML Example
This example attaches U+030B after base letters using hex, decimal, and a CSS content string (ő, ű):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "o\030B";
}
</style>
</head>
<body>
<p>Double acute (decimal on u): ű</p>
<p id="point">Double acute (CSS entity): </p>
</body>
</html>🌐 Browser Support
Numeric references for U+030B are supported in all modern browsers. Stacking quality depends on font support for combining marks:
👀 Live Preview
Combining double acute on Hungarian vowels (base letter first, then U+030B):
🧠 How It Works
Hexadecimal Code
̋ references Unicode 030B in hex. Write it immediately after the base letter (for example ő).
Decimal HTML Code
̋ is decimal 779, equivalent to U+030B.
CSS Entity (Escape)
\030B inside a CSS string (for example content: "o\030B") emits the same combining sequence in generated content.
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:
Correct spelling of ő and ű (e.g. tű, sző) on Hungarian websites and apps.
Languages that use the double acute in dictionaries and language-learning sites.
Phonetic transcription and notation where double acute marks apply.
Academic papers, eBooks, and typography with decomposed diacritics.
HTML entity lists and Unicode tables for combining marks.
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
\030Bonly 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
contentfor 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
Two HTML numeric references encode U+030B after a base letter
̋ ̋In CSS, use \030B after the base in a string (e.g. "o\030B")
\030BU+030B is a combining mark (Mn) in U+0300–U+036F
No named HTML entity — use numeric references or CSS escapes
Hungarumlaut: ő = ő, ű = ű
❓ Frequently Asked Questions
̋ (hex) or ̋ (decimal) after the base letter, e.g. ő 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.\030B belongs in stylesheet strings. Same code point, different layer.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
