HTML Entity for Down Arrow Corner Left (↵)

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

What You'll Learn

How to display the Down Arrow Corner Left (↵) in HTML using hexadecimal, decimal, the named entity ↵, and CSS escape methods. This character is U+21B5 (DOWNWARDS ARROW WITH CORNER LEFTWARDS) in the Arrows block (U+2190–U+21FF)—often used for Enter/Return key notation, carriage return, or down-then-left flow in flowcharts and UI.

Render it with ↵, ↵, ↵, or CSS escape \21B5. For a straight down arrow use ↓ (↓, U+2193). The corner-left variant is not the same glyph as a simple downward arrow.

⚡ Quick Reference — Down Arrow Corner Left

Unicode U+21B5

Arrows block

Hex Code ↵

Hexadecimal reference

HTML Code ↵

Decimal reference

Named Entity ↵

Carriage return arrow (U+21B5)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21B5
Hex code       ↵
HTML code      ↵
Named entity   ↵
CSS code       \21B5
Related        U+2193 = Down arrow (↓); Enter/Return notation
1

Complete HTML Example

This example demonstrates the Down Arrow Corner Left (↵) using hexadecimal code, decimal HTML code, the named entity ↵, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21B5";
  }
 </style>
</head>
<body>
<p>Down Arrow Corner Left using Hexadecimal: &#x21B5;</p>
<p>Down Arrow Corner Left using HTML Code: &#8629;</p>
<p>Down Arrow Corner Left using HTML Entity: &crarr;</p>
<p id="point">Down Arrow Corner Left using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21B5 is widely supported in modern browsers when rendered with a font that includes Arrows:

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

👀 Live Preview

See the Down Arrow Corner Left (↵) in Enter/Return and flow contexts:

Large glyph
Enter / Return Press ↵ to submit
Keyboard shortcut Ctrl+↵
vs down arrow ↵ corner left   ↓ straight down
Named entity &crarr; → ↵
All HTML refs &#x21B5; &#8629; &crarr;

🧠 How It Works

1

Hexadecimal Code

&#x21B5; uses the Unicode hexadecimal value 21B5 to display the Down Arrow Corner Left. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8629; uses the decimal Unicode value 8629 to display the same character.

HTML markup
3

Named HTML Entity

&crarr; is the HTML5 named entity for U+21B5 (carriage return arrow). It is easy to read in source and resolves to ↵.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+21B5. Straight down arrow: &darr; (↓). Serve HTML as UTF-8 so &crarr; resolves correctly.

Use Cases

The Down Arrow Corner Left (↵) is commonly used in:

⌨ Enter / Return key

Represent the Enter or Return key in keyboard shortcuts and documentation.

📊 Flowcharts

Show flow direction (down then left) in flowcharts and process diagrams.

📝 Forms & line breaks

Indicate submit action or new line/paragraph in forms and instructions.

💻 Technical docs

Document carriage return or line-ending behavior in APIs and specs.

📋 Keyboard shortcuts

Show “press Enter” or similar in tutorials and help text.

➜ Directional UI

Use as a cue when navigation flows down and then left.

💡 Best Practices

Do

  • Use &crarr; for readable markup, or &#x21B5; / &#8629;
  • Add aria-label when the symbol means Enter, submit, or return
  • Pair ↵ with a short label (e.g. “Press Enter to submit”)
  • Use \21B5 in CSS ::before / ::after for pure-CSS indicators
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &crarr; (↵) with &darr; (↓, straight down arrow)
  • Put CSS escape \21B5 in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume decorative fonts include all Arrows glyphs
  • Use U+21B5 when you only need a simple downward direction (use ↓ instead)

Key Takeaways

1

Named entity available: &crarr;

&#x21B5; &#8629;
2

For CSS stylesheets, use the escape in the content property

\21B5
3

Unicode U+21B5 — DOWNWARDS ARROW WITH CORNER LEFTWARDS

4

Not the same as ↓ (&darr;, U+2193)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21B5; (hex), &#8629; (decimal), &crarr; (named entity), or \21B5 in CSS content. All produce ↵.
U+21B5 (DOWNWARDS ARROW WITH CORNER LEFTWARDS). Arrows block (U+2190–U+21FF). Hex 21B5, decimal 8629. Often used for Enter/Return or carriage return.
For Enter/Return key notation, flowcharts and diagrams, form submit indicators, line-break instructions, keyboard shortcut documentation, and technical or UI documentation.
&crarr; is easier to read in source than &#8629; or &#x21B5;, but all produce ↵. The CSS escape \21B5 is used in stylesheets in the content property of pseudo-elements.
No. &crarr; is the Down Arrow Corner Left (↵, U+21B5), which bends left at the bottom. The regular down arrow (↓, U+2193, &darr;) is a straight downward arrow. Use ↵ for Enter/Return; use ↓ for a simple down direction.

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