HTML Entity for Combining Double Rightwards Arrow Below (͢)

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

What You'll Learn

How to display the Combining Double Rightwards Arrow Below (͢) in HTML and CSS. This character is U+0362 (COMBINING DOUBLE RIGHTWARDS ARROW BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). It appears below the preceding base character and is used in the International Phonetic Alphabet (IPA) for sliding articulation.

There is no named HTML entity for U+0362. Use ͢, ͢, or \0362 in CSS content. Place the entity immediately after the base letter with no space (e.g. a͢ for ). Single rightwards arrow below is U+0357; do not confuse with double breve below (U+035C).

⚡ Quick Reference — Double Rightwards Arrow Below

Unicode U+0362

Combining Diacritical Marks (U+0300–U+036F)

Hex Code ͢

Hexadecimal reference

HTML Code ͢

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0362
Hex code       ͢
HTML code      ͢
Named entity   —
CSS code       \0362
Related        U+0357 = Single rightwards arrow below
1

Complete HTML Example

This example shows U+0362 using hexadecimal and decimal references, a base letter with the double rightwards arrow below, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0362";
  }
 </style>
</head>
<body>
<p>Double Rightwards Arrow Below using Hexadecimal: &#x0362;</p>
<p>Double Rightwards Arrow Below using HTML Code: &#866;</p>
<p id="point">Double Rightwards Arrow Below using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+0362 is supported in modern browsers when placed after a base character and rendered with a font that supports Combining Diacritical Marks:

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

👀 Live Preview

See the double rightwards arrow below a base letter (IPA font recommended):

With base letter a͢   e͢
Markup pattern a&#x0362;
Standalone mark ͢
Related marks U+0362 double arrow below   U+0357 single arrow below
Monospace refs &#x0362; &#866; \0362

🧠 How It Works

1

Hexadecimal Code

&#x0362; references code point U+0362 using hex digits 0362. Place it immediately after the base letter (e.g. a&#x0362;).

HTML markup
2

Decimal HTML Code

&#866; uses the decimal Unicode value 866 for the same combining mark.

HTML markup
3

CSS Entity

\0362 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Arrow below base character

Place U+0362 right after the base letter: . Used in IPA for sliding articulation. Single rightwards arrow below is U+0357.

Use Cases

The Combining Double Rightwards Arrow Below (͢) commonly appears in:

🎤 IPA

Phonetic transcriptions for sliding articulation—movement of the articulation rightwards during the sound.

📚 Linguistics

Academic papers, language descriptions, and phonetic notation with IPA diacritics.

📖 Dictionaries

Pronunciation guides and lexical entries that require correct IPA combining marks.

🔤 Phonetic systems

Notation that uses the double rightwards arrow below for articulatory or phonological features.

📖 Unicode documentation

Reference pages for Combining Diacritical Marks (U+0300–U+036F).

♿ Accessibility

Use fonts that support combining marks so base + U+0362 renders correctly for all users.

💡 Best Practices

Do

  • Place &#x0362; immediately after the base letter (e.g. a&#x0362;)
  • Use <meta charset="utf-8"> on pages with combining marks
  • Choose IPA-friendly fonts (Charis SIL, Doulos SIL, Noto)
  • Use hex or decimal consistently within one document
  • Distinguish U+0362 (double arrow) from U+0357 (single arrow below)

Don’t

  • Confuse U+0362 with U+035C (double breve below)
  • Put a space between the base letter and the combining entity
  • Expect a named HTML entity—use numeric references only
  • Put CSS escape \0362 inside HTML text nodes
  • Assume every font renders IPA combining arrows correctly

Key Takeaways

1

Two HTML references for the combining mark

&#x0362; &#866;
2

For CSS stylesheets, use the escape in the content property

\0362
3

U+0362 combining double rightwards arrow below—place after base letter

4

Example: a͢ with a&#x0362;

5

No named entity for U+0362 — use numeric references

❓ Frequently Asked Questions

Use &#x0362; (hex), &#866; (decimal), or \0362 in CSS content. Place the entity immediately after the base letter (e.g. a&#x0362; for a͢). There is no named HTML entity for U+0362.
U+0362 (COMBINING DOUBLE RIGHTWARDS ARROW BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0362, decimal 866. Used in IPA for sliding articulation.
When you need this diacritic in phonetic or linguistic content: IPA transcriptions for sliding articulation, phonology notation, or any text requiring the double rightwards arrow below a base character.
HTML numeric references (&#866; or &#x0362;) go in markup after a base character. The CSS escape \0362 is used in stylesheets, typically in the content property of pseudo-elements.
U+0362 is a combining nonspacing mark. It attaches below the preceding base character (e.g. a + ͢ = a͢). Use a&#x0362; or a&#866; in HTML with no space between the letter and the entity.

Explore More HTML Entities!

Discover 1500+ HTML character references — diacritics, punctuation, symbols, 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