HTML Entity for Right Arrow Loop (↬)

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

What You'll Learn

How to display the Right Arrow Loop (↬) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21AC (RIGHTWARDS ARROW WITH LOOP) in the Arrows block (U+2190–U+21FF)—a rightward arrow with a loop, commonly used for navigation, cycling, repeat actions, and UI indicators.

Render it with ↬ (named), ↬, ↬, or CSS \21AC. Related: U+21AB (↫, left arrow loop / ↫), U+21AA (↪, right arrow hook / ↪). Do not confuse ↬ with plain right arrow →.

⚡ Quick Reference — Right Arrow Loop

Unicode U+21AC

Arrows (U+2190–U+21FF)

Hex Code ↬

Hexadecimal reference

HTML Code ↬

Decimal reference

Named Entity ↬

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21AC
Hex code       ↬
HTML code      ↬
Named entity   ↬
CSS code       \21AC
Meaning        Rightwards arrow with loop
Related        U+21AB = left arrow loop (↫, ↫)
               U+21AA = right arrow hook (↪, ↪)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ↬ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21AC";
  }
 </style>
</head>
<body>
<p>Hex: &#x21AC;</p>
<p>Decimal: &#8620;</p>
<p>Named: &rarrlp;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21AC is widely supported in all modern browsers—it is part of the standard Arrows block:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Right Arrow Loop (↬) in common contexts:

Cycle / repeat Repeat ↬ Next item
Navigation Slide 1 ↬ Slide 2 ↬ Slide 3
Large glyph
Arrow comparison ↫ ↬ ↪
Entity refs &rarrlp; &#x21AC; &#8620; \21AC

🧠 How It Works

1

Named HTML Entity

&rarrlp; is the named entity for U+21AC (rightwards arrow with loop). It is the most readable option in HTML source.

HTML markup
2

Hexadecimal Code

&#x21AC; uses the Unicode hexadecimal value 21AC.

HTML markup
3

Decimal HTML Code

&#8620; uses the decimal Unicode value 8620 for the same character.

HTML markup
4

CSS Entity

\21AC is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+21AC in the Arrows block. Previous: Right Arrow Hook (↪). Next: Right Arrow Over Left Arrow (⇄).

Use Cases

The Right Arrow Loop (↬) is commonly used in:

🧭 Navigation

Menus and UI that cycle through items or loop back to the start.

🔀 Cycling

Repeat, rotate, and carousel controls in apps and websites.

🎨 UI design

Buttons, icons, and dashboards showing loop or cycle actions.

🛠 Diagrams

Flowcharts and process maps with looping or iterative steps.

🔄 Repeat actions

Redo, replay, and iterate indicators in media and tool UIs.

♿ Accessibility

Pair ↬ with plain language (e.g. “repeat” or “cycle”) for screen readers.

💡 Best Practices

Do

  • Prefer &rarrlp; in HTML for readable source markup
  • Use ↬ for repeat, cycle, and carousel-style navigation
  • Set <meta charset="utf-8">
  • Link to Left Arrow Loop for the paired ↫ symbol
  • Keep one entity style consistent across your project
  • Use CSS \21AC for decorative loop arrows in pseudo-elements

Don’t

  • Confuse ↬ (U+21AC) with ↫ (U+21AB) or ↪ (U+21AA)
  • Use padded Unicode notation like U+021AC—the correct value is U+21AC
  • Use CSS escape \21AC in HTML text nodes
  • Substitute ASCII -> when the loop arrow ↬ is intended
  • Confuse ↬ with swap arrows ⇄ (&rlarr;)

Key Takeaways

1

Four ways to render U+21AC in HTML and CSS

&rarrlp; &#x21AC; &#8620;
2

For CSS, use \21AC in the content property

3

Unicode U+21AC — RIGHTWARDS ARROW WITH LOOP (↬)

4

Paired with left loop ↫ (&larrlp;); distinct from hook ↪ and →

❓ Frequently Asked Questions

Use &rarrlp; (named), &#x21AC; (hex), &#8620; (decimal), or \21AC in CSS content. All four render ↬.
U+21AC (RIGHTWARDS ARROW WITH LOOP). Arrows block (U+2190–U+21FF). Hex 21AC, decimal 8620.
For navigation, cycling, looping UI controls, directional design, diagrams, and content that indicates a repeat or cycle action.
&rarrlp; is more readable in source markup; &#8620; and &#x21AC; are numeric alternatives. All render ↬ in modern browsers.
Named and numeric HTML references (&rarrlp;, &#8620;, &#x21AC;) go in markup. The CSS escape \21AC is used in stylesheets, typically on ::before or ::after. Both render ↬.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, 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