HTML Entity for Right White Arrow From Wall (⇰)

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

What You'll Learn

How to display the Right White Arrow From Wall (⇰) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21F0 (RIGHTWARDS WHITE ARROW FROM WALL) in the Arrows block (U+2190–U+21FF)—a hollow arrow emerging from a vertical wall or boundary, used for navigation, flowcharts, diagrams, and directional emphasis.

Use ⇰, ⇰, or CSS \21F0. There is no named HTML entity. Do not confuse ⇰ with U+21E8 (⇨, plain white arrow) or U+2192 (→, filled right arrow / →).

⚡ Quick Reference — Right White Arrow From Wall

Unicode U+21F0

Arrows block

Hex Code ⇰

Hexadecimal reference

HTML Code ⇰

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F0
Hex code       ⇰
HTML code      ⇰
Named entity   (none)
CSS code       \21F0
Meaning        White arrow emerging from a wall (right)
Related        U+21E8 = rightwards white arrow (⇨)
               U+2192 = rightwards arrow (→ / →)
               U+21F1 = north west arrow to corner (⇱)
1

Complete HTML Example

A simple example showing the Right White Arrow From Wall (⇰) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21F0";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x21F0;</p>
<p>Symbol (decimal): &#8688;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right White Arrow From Wall (⇰) is universally supported in all modern browsers when the font includes Arrows block glyphs:

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

👀 Live Preview

See the Right White Arrow From Wall (⇰) rendered live in different contexts:

Inline navigation Exit boundary ⇰ Continue outside.
Large glyph
Flow notation Wall |⇰ Next zone
Arrow comparison ⇨ ⇰ →
Numeric refs &#x21F0; &#8688; \21F0
Diagrams Use ⇰ when flow leaves a boundary or container wall.

🧠 How It Works

1

Hexadecimal Code

&#x21F0; uses the Unicode hexadecimal value 21F0 for the right white arrow from wall. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21F0 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21F0 is in the Arrows block. There is no named HTML entity. Previous: Right White Arrow (U+21E8).

Use Cases

The Right White Arrow From Wall (⇰) is commonly used in:

➡ Directional Indicators

Show movement emerging from a boundary, wall, or container edge.

🔍 Navigation Elements

Use in menus and flows that exit a defined region to the right.

📊 Flowcharts

Indicate transitions that leave a subprocess or bounded step.

📄 Technical Diagrams

Include in architecture diagrams with wall or boundary notation.

🛠 Process Flows

Document workflows where output crosses a system boundary.

🎨 Graphic Design

Add directional accents in infographics and visual layouts.

💡 Best Practices

Do

  • Use &#x21F0; or &#8688; for HTML markup
  • Distinguish ⇰ from ⇨ (plain white arrow) and → (filled)
  • Add aria-label or surrounding text for accessibility
  • Verify your font supports the Arrows block (U+21F0)
  • Keep one entity style per project for consistency

Don’t

  • Confuse ⇰ with ⇨ or →
  • Assume a named HTML entity exists—there is none for U+21F0
  • Use CSS \21F0 inside HTML text nodes
  • Rely on the arrow alone without context for screen readers
  • Mix entity styles randomly in one file
  • Assume all fonts render wall-arrow glyphs identically

Key Takeaways

1

Two HTML references plus CSS all render ⇰

&#x21F0; &#8688;
2

For CSS, use \21F0 in the content property

3

Unicode U+21F0 — RIGHTWARDS WHITE ARROW FROM WALL

4

No named HTML entity—use numeric hex or decimal codes

5

Previous: Right White Arrow   Next: Ring

❓ Frequently Asked Questions

Use &#x21F0; (hex), &#8688; (decimal), or \21F0 in CSS content. There is no named HTML entity. All three methods render ⇰ correctly.
U+21F0 (RIGHTWARDS WHITE ARROW FROM WALL). Arrows block (U+2190–U+21FF). Hex 21F0, decimal 8688.
In directional indicators, navigation elements, flowcharts, diagrams, process flows, and graphic design where movement from a boundary or wall is shown.
HTML references (&#8688; or &#x21F0;) go in markup. The CSS escape \21F0 is used in stylesheets, typically on ::before or ::after. Both produce ⇰.
Named HTML entities cover a subset of common characters. Arrows symbols like U+21F0 use numeric hex or decimal codes or CSS escapes, which is standard for specialized arrow symbols in HTML.

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