HTML Entity for Right Arrow With Corner Down (↴)

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

What You'll Learn

How to display the Right Arrow With Corner Down (↴) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21B4 (RIGHTWARDS ARROW WITH CORNER DOWNWARD) in the Arrows block (U+2190–U+21FF)—a rightward arrow that turns downward, used for navigation icons, UI design, flowcharts, and process diagrams.

Render it with ↴, ↴, or CSS \21B4. There is no named HTML entity. Related: U+21B5 (↵, downwards arrow with corner leftward), U+27F4 (⟴, right arrow with circled plus). Do not confuse ↴ with ↳ (↳) or plain →.

⚡ Quick Reference — Right Arrow With Corner Down

Unicode U+21B4

Arrows block (U+2190–U+21FF)

Hex Code ↴

Hexadecimal reference

HTML Code ↴

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21B4
Hex code       ↴
HTML code      ↴
Named entity   (none)
CSS code       \21B4
Meaning        Rightwards arrow with corner downward
Related        U+21B5 = down arrow with corner left (↵)
               U+21B3 = up arrow with tip left (↳)
               U+2911 = right arrow with dotted stem (⤑)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ↴ using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21B4";
  }
 </style>
</head>
<body>
<p>Hex: &#x21B4;</p>
<p>Decimal: &#8628;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21B4 renders in modern browsers when the font includes Arrows block glyphs:

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

👀 Live Preview

See the Right Arrow With Corner Down (↴) in common contexts:

Flow / turn Step 1 ↴ Step 2
Navigation Menu ↴ Submenu
Large glyph
Arrow comparison ↳ ↴ ↵ →
Numeric refs &#x21B4; &#8628; \21B4

🧠 How It Works

1

Hexadecimal Code

&#x21B4; uses the Unicode hexadecimal value 21B4. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21B4 in the Arrows block. No named entity—use numeric codes. Previous: Right Arrow With Circled Plus (⟴). Next: Right Arrow With Dotted Stem (⤑).

Use Cases

The Right Arrow With Corner Down (↴) is commonly used in:

🧭 Navigation icons

Menus and breadcrumbs showing a rightward path that turns downward.

🛠 UI design

Buttons and links with corner-turn directional indicators.

📊 Flowcharts

Process diagrams and workflow visualizations with direction changes.

🗺 Directional elements

Wayfinding, maps, and guides with complex directional paths.

📄 Process diagrams

Business process docs and workflow charts needing turn arrows.

♿ Accessibility

Pair ↴ with plain language describing the turn or next step for screen readers.

💡 Best Practices

Do

  • Use &#x21B4; or &#8628; in HTML (no named entity exists)
  • Use ↴ when a right-then-down turn fits your navigation or diagram
  • Set <meta charset="utf-8">
  • Keep hex or decimal style consistent across your project
  • Use CSS \21B4 for decorative arrows in pseudo-elements
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ↴ (U+21B4) with ↳ (U+21B3), ↵ (U+21B5), or plain →
  • Use padded Unicode notation like U+021B4—the correct value is U+21B4
  • Use CSS escape \21B4 in HTML text nodes
  • Use padded CSS like \021B4—prefer \21B4
  • Use lowercase hex in reference tables when uppercase is your project standard (21B4)

Key Takeaways

1

Three ways to render U+21B4 in HTML and CSS

&#x21B4; &#8628;
2

For CSS, use \21B4 in the content property

3

Unicode U+21B4 — RIGHTWARDS ARROW WITH CORNER DOWNWARD (↴)

4

No named HTML entity—use numeric hex or decimal references

❓ Frequently Asked Questions

Use &#x21B4; (hex), &#8628; (decimal), or \21B4 in CSS content. There is no named HTML entity. All three render ↴.
U+21B4 (RIGHTWARDS ARROW WITH CORNER DOWNWARD). Arrows block (U+2190–U+21FF). Hex 21B4, decimal 8628.
For navigation icons, UI design, flowcharts, process diagrams, and content that needs a rightward direction that turns downward.
Numeric HTML references (&#8628;, &#x21B4;) go in markup. The CSS escape \21B4 is used in stylesheets, typically on ::before or ::after. Both render ↴.
Named HTML entities cover common characters; specialized arrow symbols in the Arrows block use numeric hex (&#x21B4;) or decimal (&#8628;) references instead.

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