HTML Entity for Double Breve Below (U+035C)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+035C

What Is Double Breve Below?

Double breve below is the Unicode character at U+035C in the Combining Diacritical Marks block. Official name: COMBINING DOUBLE BREVE BELOW. It attaches under the previous base letter — for example a͜ → a͜.

Remember
Mark          (combining ͜)
Unicode       U+035C
Hex entity    ͜
Decimal       ͜
CSS escape    \035C
Named entity  (none)
Related       U+035D (above) · ˘ (˘)

Prefer ͜ or ͜ immediately after the base letter (no named form). Use U+035D when the double breve belongs above.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity͜After a base letter in HTML (preferred)
Decimal entity͜After a base letter in HTML
Direct characterBase + ͜HTML text (UTF-8)
CSS escape\035CStylesheet content (after a letter)
Spacing breve (related)˘ (˘, U+02D8)Standalone spacing mark — not combining

When to Use Which

SituationUse
Double breve below a letterBase + ͜
Double breve above (tie)U+035D — e.g. a͝
Spacing breve alone˘ (˘, U+02D8)
Other mark belowDiaeresis below
Generated text via ::before / ::aftercontent: "a\035C"

Live Preview

Combining double breve below rendered on base letters and compared with related marks.

Built with U+035C a͜   e͜   o͜
Large glyph a͜
Compared a͜   a͝   ˘   a̤
With entities Hex: a͜ | Decimal: a͜

Complete HTML Example

One page that shows Double Breve Below with hex, decimal, CSS escape, and a typed combining form. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce a͜, plus a short comparison with the above form.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Double Breve Below (U+035C) in HTML</title>
  <style>
    #point::after {
      content: "a\035C";
    }
  </style>
</head>
<body>
  <p>Built with Hex: a&#x035C;</p>
  <p>Built with Decimal: a&#860;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: a͜   e͜   o͜</p>
  <p>Compared: a&#x035C; (below) vs a&#x035D; (above)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: write the base letter, then &#x035C; → a͜. Preferred when there is no named entity.

2. Decimal: same code point as 860 → &#860; after the base letter. Same result as hex.

3. CSS: use \035C in content after a letter in the string (not an HTML entity). #point::after appends a͜.

4. Typed / compared: paste the combining mark after a letter in UTF-8, or contrast U+035C (below) with U+035D (above).

Pitfalls & Tips

Common mistakes when working with Double Breve Below.

Order

Base letter first

Write a&#x035C;, not &#x035C;a. Combining marks attach to the previous character.

͝

Below vs above

U+035C is below. U+035D is double breve above. Pick the correct code point for your notation.

˘

Not &breve;

&breve; is the spacing mark U+02D8 (˘). It does not combine with a letter the way U+035C does.

Name

No named entity

There is no &doublebrevebelow; for U+035C. Use &#x035C; or &#860;.

CSS vs HTML

Do not mix escapes

\035C belongs in CSS strings. &#x035C; / &#860; belong in HTML after a base letter.

Fonts

Diacritic font coverage

Some fonts omit U+035C. Prefer a font with Combining Diacritical Marks coverage for display.

Browser Support

Combining double breve below (U+035C) and its entity forms (&#x035C;, &#860;, CSS \\035C) are supported in all mainstream browsers. Visible positioning depends on font diacritic coverage.

✓ Universal support

Double Breve Below (U+035C)

Encode with hex, decimal, CSS escape, or type the combining mark after a letter — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+035C / entities Full support

Bottom line: Prefer &#x035C; after a base letter (no named form). Use \\035C only inside CSS content.

Key Takeaways

  • Unicode: combining double breve below is U+035C (decimal 860).
  • HTML: no named entity — use base + &#x035C; / &#860;, or type the mark after a letter.
  • CSS: use a letter + \035C inside content.
  • Meaning: below double breve — not U+035D (above) or spacing &breve;.

One line: U+035C → base + &#x035C; / &#860; / CSS \035C.

Frequently Asked Questions

Place &#x035C; (hex) or &#860; (decimal) after a base letter, type the combining mark in UTF-8 after a letter, or use CSS \035C in content after a letter. There is no named HTML entity for U+035C.
U+035C (COMBINING DOUBLE BREVE BELOW). Hex 035C, decimal 860. It belongs to the Combining Diacritical Marks block (U+0300–U+036F).
No. Use numeric forms &#860; or &#x035C; after a base character. The spacing breve ˘ uses &breve; (U+02D8) — a different character.
Use U+035C when the double breve belongs below the letter. Use U+035D when it belongs above (the common “tie” above).
HTML entities (&#860; or &#x035C;) go in markup after a base letter. The CSS escape \035C goes in stylesheet strings (usually content on ::before/::after, after a letter in the string).
No. U+035C is combining double breve below. &breve; is the spacing breve U+02D8 (˘), which does not combine with a letter.

Did you know?

Double breve below is Unicode U+035C (decimal 860) — a combining mark (COMBINING DOUBLE BREVE BELOW) in the Combining Diacritical Marks block. There is no HTML5 named entity; use &#x035C; or &#860; after a base letter (e.g. a&#x035C; → a͜). The above form is U+035D.

Next: Double Dagger

Learn the HTML entity for double dagger (U+2021).

Double Dagger tutorial →

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