HTML Entity for Double Tilde (U+0360)

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

What Is Double Tilde?

Double tilde is the Unicode character at U+0360 in the Combining Diacritical Marks block. Official name: COMBINING DOUBLE TILDE. It is a double diacritic placed between two letters — for example a͠b → a͠b.

Remember
Mark          (combining ͠)
Unicode       U+0360
Hex entity    ͠
Decimal       ͠
CSS escape    \0360
Named entity  (none)
Tip           letter + mark + letter

Prefer ͠ or ͠ after the first letter (no named form). Put the second letter immediately after the mark.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity͠After the first letter in HTML (preferred)
Decimal entity͠After the first letter in HTML
Direct characterLetter + ͠ + letterHTML text (UTF-8)
CSS escape\0360Stylesheet content (between letters)
Spacing tilde (related)˜ (˜, U+02DC)Standalone tilde — not combining

When to Use Which

SituationUse
Double tilde spanning two lettersFirst + ͠ + second
IPA ligature tie (double inverted breve)U+0361 — e.g. t͡ʃ
Double breve above (one letter)U+035D — e.g. a͝
Spacing / small tilde alone˜ (˜)
Generated text via ::before / ::aftercontent: "a\0360 b"

Live Preview

Combining double tilde spanning two letters and compared with related marks.

Example a͠b   o͠o
On one letter a͠
Large glyph a͠b
Compared a͠b   t͡ʃ   a͝   ˜
With entities Hex: a͠b | Decimal: a͠b

Complete HTML Example

One page that shows Double Tilde 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 place ͠ between two letters.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Double Tilde (U+0360) in HTML</title>
  <style>
    #point::after {
      content: "a\0360 b";
    }
  </style>
</head>
<body>
  <p>Built with Hex: a&#x0360;b</p>
  <p>Built with Decimal: a&#864;b</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: a͠b   o͠o</p>
  <p>Order: first letter, then U+0360, then second letter</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: write the first letter, then &#x0360;, then the second letter → a͠b.

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

3. CSS: use \0360 in content between letters in the string (not an HTML entity). #point::after appends a͠b.

4. Typed / order: paste the combining mark between the two letters in a UTF-8 document.

Pitfalls & Tips

Common mistakes when working with Double Tilde.

Order

Put the mark between letters

Write a&#x0360;b, not a lone &#x0360;. The double tilde is meant to span two base characters.

Name

No named entity

There is no HTML5 named entity for U+0360. Use &#x0360; or &#864;.

˜

Not &tilde;

&tilde; is the spacing small tilde (U+02DC). ASCII ~ is U+007E. Neither is the combining double tilde.

͡

Not the IPA ligature tie

U+0361 is combining double inverted breve (IPA ligature tie). U+0360 is the double-tilde form.

CSS vs HTML

Do not mix escapes

\0360 belongs in CSS strings. &#x0360; / &#864; belong in HTML.

Fonts

Diacritic font coverage

Some fonts draw spanning double marks poorly. Prefer a font with solid Combining Diacritical Marks support.

Semicolon

End references

Always finish numeric entities with ; — write &#x0360;, not &#x0360.

Browser Support

Combining double tilde (U+0360) and its entity forms (&#x0360;, &#864;, CSS \\0360) are supported in all mainstream browsers. Visible glyphs depend on Combining Diacritical Marks font coverage.

✓ Universal support

Double Tilde (U+0360)

Encode with hex, decimal, CSS escape, or type the combining mark — 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+0360 / entities Full support

Bottom line: Prefer &#x0360; between two letters in HTML (no named form). Use &#864; when decimal form is required, and \\0360 only inside CSS content.

Key Takeaways

  • Unicode: combining double tilde is U+0360 (decimal 864).
  • HTML: no named entity — use a&#x0360;b / a&#864;b.
  • CSS: use \0360 between letters inside content.
  • Meaning: spanning double tilde — not &tilde;, not ~, not U+0361.

One line: U+0360 → first + &#x0360; / &#864; + second / CSS \0360.

Frequently Asked Questions

Place &#x0360; (hex) or &#864; (decimal) between two letters, type the combining mark in UTF-8 between letters, or use CSS \0360 in content between letters. There is no named HTML entity for U+0360.
U+0360 (COMBINING DOUBLE TILDE). Hex 0360, decimal 864. It belongs to the Combining Diacritical Marks block (U+0300–U+036F).
No. Use numeric forms &#864; or &#x0360; between two base letters. The spacing tilde ˜ uses &tilde; (U+02DC) — a different character.
Use it in linguistics or phonetics when a double tilde should span two letters. Prefer U+0361 for the IPA ligature tie (double inverted breve), and &tilde; (˜) for a spacing tilde alone.
HTML entities (&#864; or &#x0360;) go in markup between two letters. The CSS escape \0360 goes in stylesheet strings (usually content on ::before/::after, between letters in the string).
No. U+0360 is combining double tilde. &tilde; is the spacing small tilde U+02DC (˜). U+0361 is combining double inverted breve. ASCII ~ is U+007E.

Did you know?

Double tilde is Unicode U+0360 (decimal 864) — a combining mark (COMBINING DOUBLE TILDE) in the Combining Diacritical Marks block. There is no HTML5 named entity; use &#x0360; or &#864; between two letters (e.g. a&#x0360;b → a͠b). Related: combining double inverted breve U+0361, spacing tilde &tilde; (˜).

Next: Double Union

Learn the HTML entity for double union (U+22D3).

Double Union 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