HTML Entity for Left Arrow Vertical Stroke (⇷)

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

What You'll Learn

How to display the Left Arrow Vertical Stroke (⇷) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21F7 (LEFTWARDS ARROW WITH VERTICAL STROKE) in the Arrows block (U+2190–U+21FF)—a leftwards arrow with a vertical stroke, used in logical operations, diagrams, and UI elements.

Render it with ⇷, ⇷, or CSS \21F7. There is no named HTML entity. Related: U+21F8 (⇸, right arrow with vertical stroke), U+219A (↚, left arrow with stroke / ↚).

⚡ Quick Reference — Left Arrow Vertical Stroke

Unicode U+21F7

Arrows block

Hex Code ⇷

Hexadecimal reference

HTML Code ⇷

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F7
Hex code       ⇷
HTML code      ⇷
Named entity   (none)
CSS code       \21F7
Meaning        Leftwards arrow with vertical stroke
Related        U+21F8 = right arrow vertical stroke (⇸)
               U+219A = left arrow stroke (↚)
1

Complete HTML Example

A simple example showing the Left Arrow Vertical Stroke (⇷) 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: "\21F7";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x21F7;</p>
<p>Symbol using HTML Code: &#8695;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Arrow Vertical Stroke (⇷) renders in 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 Left Arrow Vertical Stroke (⇷) in logic and UI contexts:

Logic notation P ⇷ Q
Navigation ⇷ Back
Diagram flow Step B ⇷ Step A
Large glyph
Arrow comparison ⇷ ⇸ ↚ ←
Numeric refs &#x21F7; &#8695; \21F7

🧠 How It Works

1

Hexadecimal Code

&#x21F7; uses the Unicode hexadecimal value 21F7 to display the left arrow with vertical stroke. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21F7 is used in CSS stylesheets in the content property of pseudo-elements like ::after for logic and diagram notation.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21F7 is in the Arrows block. Next: Left Arrowhead Below.

Use Cases

The Left Arrow Vertical Stroke (⇷) is commonly used in:

📐 Logic

Logic notation, proofs, or formal documentation that uses this arrow.

📊 Diagrams

Indicate direction with vertical-stroke modifier in process and state diagrams.

🧭 Navigation

Back or left-direction controls with distinct vertical-stroke style in toolbars.

📄 Documentation

Specifications, flow, or notation that uses this composite arrow.

⌨ Shortcuts

Show shortcut hints where a left-arrow-vertical-stroke symbol is required.

📱 Custom UI

Unique left-arrow variant in app navigation or diagram tools.

💡 Best Practices

Do

  • Pair ⇷ with text or aria-label (e.g., “back” or “left”) for accessibility
  • Use &#8695; or &#x21F7; in HTML—no named entity exists
  • Use fonts that support the Arrows block (U+21F7)
  • Set <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Distinguish ⇷ from ↚ when vertical-stroke meaning matters

Don’t

  • Expect a named HTML entity for U+21F7
  • Use CSS \21F7 inside HTML text nodes
  • Confuse ⇷ with ⇸ (right arrow with vertical stroke)
  • Confuse ⇷ with ↚ (horizontal stroke / &nlarr;)
  • Rely on the symbol alone without context in critical UI

Key Takeaways

1

Two HTML numeric references plus CSS for U+21F7

&#x21F7; &#8695;
2

For CSS, use \21F7 in the content property

3

Unicode U+21F7 — LEFTWARDS ARROW WITH VERTICAL STROKE

4

Arrows block (U+2190–U+21FF) — no named entity

❓ Frequently Asked Questions

Use &#x21F7; (hex), &#8695; (decimal), or \21F7 in CSS content. There is no named entity. All three methods render ⇷ correctly.
U+21F7 (LEFTWARDS ARROW WITH VERTICAL STROKE). Arrows block (U+2190–U+21FF). Hex 21F7, decimal 8695. A leftwards arrow with vertical stroke.
In logical operations, diagrams, navigation, technical documentation, and any content that requires a left-arrow-with-vertical-stroke symbol.
HTML references (&#8695; or &#x21F7;) go in markup. The CSS escape \21F7 is used in stylesheets, typically on ::before or ::after. Both produce ⇷.
Named entities cover common characters; arrow symbols with modifiers like the vertical stroke (U+21F7) in the Arrows block use numeric hex (&#x21F7;) or decimal (&#8695;) codes. That is standard for such 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