HTML Entity for Double Grave Accent (̏)

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

What You'll Learn

How to encode U+030F (combining double grave accent) in HTML and CSS. This mark combines with the preceding character—for example ȍ renders as (short falling tone in Serbo-Croatian and Slovene) and is used in the IPA for extra-low tone.

It is defined in the Combining Diacritical Marks block (U+0300–U+036F). There is no named HTML entity for U+030F; use ̏, ̏, or \030F in CSS strings. Do not confuse with double acute (U+030B, Hungarian ő/ű) or single combining grave (U+0300).

⚡ Quick Reference — Double Grave Accent Entity

Unicode U+030F

Combining Diacritical Marks

Hex Code ̏

Hexadecimal reference

HTML Code ̏

Decimal reference

CSS Code \030F

Use in CSS content

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

Complete HTML Example

This example attaches U+030F after base letters using hex, decimal, and a CSS content string (ȍ, ȁ):

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

🌐 Browser Support

Numeric references for U+030F 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 grave on vowels (base letter first, then U+030F):

Linguistics ȍ   ȁ   ȅ   (short falling tone)
Large glyph ȍ   ȁ
vs precomposed NFD: o + U+030F   some Latin letters have precomposed forms (e.g. U+020D)
vs related marks U+0300 (single grave)   U+030B (double acute)
Monospace refs &#x030F; &#783; \030F

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#783; is decimal 783, equivalent to U+030F.

HTML markup
3

CSS Entity (Escape)

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

CSS stylesheet
=

Same visual result

With base o or a, all methods yield or . Place U+030F immediately after the base letter. No named entity for U+030F.

Use Cases

The combining double grave accent (U+030F) is commonly used in:

🇮🇷 Serbo-Croatian & Slovene

Short falling tone in phonetic or orthographic discussion (e.g. ȍ, ȁ).

📚 IPA

International Phonetic Alphabet notation for extra-low tone on vowels.

📖 Linguistics & phonology

Academic papers, dictionaries, and language-learning sites with tone diacritics.

🌐 Cyrillic

When precomposed Cyrillic with double grave is unavailable, U+030F follows the base letter.

📑 Symbol references

HTML entity lists and Unicode tables for combining marks.

♿ Font support

Ensure fonts cover U+0300–U+036F so base + U+030F stacks correctly for all users.

💡 Best Practices

Do

  • Keep base letter and U+030F adjacent in the DOM (base first)
  • Use UTF-8 and pick NFC or NFD consistently for your product
  • For some Latin letters, check for precomposed forms (e.g. U+020D) before using U+030F
  • Test fonts and line-breaking so the accent does not separate from its letter
  • Use \030F only inside CSS strings, not as raw HTML text

Don’t

  • Place U+030F before the base letter (wrong order for Unicode)
  • Confuse double grave (U+030F) with double acute (U+030B) or single grave (U+0300)
  • 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+030F after a base letter

&#x030F; &#783;
2

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

\030F
3

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

4

No named HTML entity — use numeric references or CSS escapes

5

Combining mark: ȍ, ȁ (base letter + U+030F)

❓ Frequently Asked Questions

Use &#x030F; (hex) or &#783; (decimal) after the base letter, e.g. o&#x030F; for ȍ. In CSS, content: "o\030F" is a common pattern. There is no standard named entity for U+030F.
U+030F (hex 030F, decimal 783). It combines with the preceding character and lives in the Combining Diacritical Marks block.
For Serbo-Croatian and Slovene (short falling tone), IPA (extra-low tone), linguistic and phonetic content, dictionaries, and Cyrillic or other bases that need double grave. Place U+030F immediately after the base character.
HTML references belong in markup; \030F belongs in stylesheet strings. Same code point, different layer.
U+030F is a combining nonspacing mark. It attaches to the preceding base character (e.g. o + U+030F = ȍ). In HTML, place the entity right after the base with no space: o&#x030F; or o&#783;.

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