HTML Entity for Combining Double Rightwards Arrow Below (͢)

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 a͢). Single rightwards arrow below is U+0357; do not confuse with double breve below (U+035C).
⚡ Quick Reference — Double Rightwards Arrow Below
U+0362Combining Diacritical Marks (U+0300–U+036F)
͢Hexadecimal reference
͢Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+0362
Hex code ͢
HTML code ͢
Named entity —
CSS code \0362
Related U+0357 = Single rightwards arrow belowComplete 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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0362";
}
</style>
</head>
<body>
<p>Double Rightwards Arrow Below using Hexadecimal: ͢</p>
<p>Double Rightwards Arrow Below using HTML Code: ͢</p>
<p id="point">Double Rightwards Arrow Below using CSS Entity: </p>
</body>
</html>🌐 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:
👀 Live Preview
See the double rightwards arrow below a base letter (IPA font recommended):
🧠 How It Works
Hexadecimal Code
͢ references code point U+0362 using hex digits 0362. Place it immediately after the base letter (e.g. a͢).
Decimal HTML Code
͢ uses the decimal Unicode value 866 for the same combining mark.
CSS Entity
\0362 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Arrow below base character
Place U+0362 right after the base letter: a͢. Used in IPA for sliding articulation. Single rightwards arrow below is U+0357.
Use Cases
The Combining Double Rightwards Arrow Below (͢) commonly appears in:
Phonetic transcriptions for sliding articulation—movement of the articulation rightwards during the sound.
Academic papers, language descriptions, and phonetic notation with IPA diacritics.
Pronunciation guides and lexical entries that require correct IPA combining marks.
Notation that uses the double rightwards arrow below for articulatory or phonological features.
Reference pages for Combining Diacritical Marks (U+0300–U+036F).
Use fonts that support combining marks so base + U+0362 renders correctly for all users.
💡 Best Practices
Do
- Place
͢immediately after the base letter (e.g.a͢) - 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
\0362inside HTML text nodes - Assume every font renders IPA combining arrows correctly
Key Takeaways
Two HTML references for the combining mark
͢ ͢For CSS stylesheets, use the escape in the content property
\0362U+0362 combining double rightwards arrow below—place after base letter
Example: a͢ with a͢
No named entity for U+0362 — use numeric references
❓ Frequently Asked Questions
͢ (hex), ͢ (decimal), or \0362 in CSS content. Place the entity immediately after the base letter (e.g. a͢ 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.͢ or ͢) go in markup after a base character. The CSS escape \0362 is used in stylesheets, typically in the content property of pseudo-elements.a͢ or a͢ 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.
8 people found this page helpful
