HTML Entity for Left Right Arrow Vertical Stroke (⇹)

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

What You'll Learn

How to display the Left Right Arrow Vertical Stroke (⇹) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21F9 (LEFT RIGHT ARROW WITH VERTICAL STROKE) in the Arrows block (U+2190–U+21FF)—a bidirectional arrow with a vertical stroke, commonly used in mathematical notation, logic, and diagrams.

Render it with ⇹, ⇹, or CSS escape \21F9. There is no named HTML entity. Do not confuse ⇹ with U+2194 (↔, simple left right arrow / ↔) or U+21FC (⇼, double vertical stroke).

⚡ Quick Reference — Left Right Arrow Vertical Stroke

Unicode U+21F9

Arrows block

Hex Code ⇹

Hexadecimal reference

HTML Code ⇹

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F9
Hex code       ⇹
HTML code      ⇹
Named entity   (none)
CSS code       \21F9
Meaning        Left right arrow with vertical stroke
Related        U+2194 = left right arrow (↔)
               U+21FC = double vertical stroke (⇼)
1

Complete HTML Example

A simple example showing the Left Right 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: "\21F9";
  }
 </style>
</head>
<body>
<p>Arrow (hex): &#x21f9;</p>
<p>Arrow (decimal): &#8697;</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Right Arrow Vertical Stroke (⇹) 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 Left Right Arrow Vertical Stroke (⇹) rendered live in different contexts:

Inline text A ⇹ B denotes a bidirectional relation with a vertical stroke.
Large glyph
In a formula fg — bidirectional mapping
Diagram label Node A ⇹ Node B
Arrow comparison ↔ ⇹ ⇼
Numeric refs &#x21F9; &#8697; \21F9

🧠 How It Works

1

Hexadecimal Code

&#x21F9; uses the Unicode hexadecimal value 21F9 for the left right arrow with vertical stroke. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21F9 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+21F9 is in the Arrows block. Previous: Left Right Arrow Through Small Circle.

Use Cases

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

📐 Mathematical Notation

Represent bidirectional relations with a vertical stroke in equations.

📜 Logic & Formal Systems

Denote symmetric or reversible relations in logic and proof notation.

📊 Diagrams & Flowcharts

Show two-way flow or equivalence between nodes with a distinct arrow style.

📄 Technical Documentation

Indicate bidirectional mapping or relation in specs and manuals.

📚 Academic & Research

Use in papers and textbooks for specialized arrow notation with vertical stroke.

🔢 Math Rendering

Display in web-based math editors and equation renderers that support this symbol.

💡 Best Practices

Do

  • Use &#8697; or &#x21F9; in HTML—no named entity exists
  • Add aria-label or surrounding text for accessibility
  • Verify your font supports the Arrows block (U+21F9)
  • Keep one numeric style (hex or decimal) per project
  • Provide context when the symbol denotes a bidirectional relation with emphasis

Don’t

  • Expect a named HTML entity for U+21F9
  • Use CSS \21F9 inside HTML text nodes
  • Confuse ⇹ (vertical stroke) with ↔ (simple left right arrow)
  • Assume all fonts render the vertical stroke identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS for U+21F9

&#x21F9; &#8697;
2

For CSS, use \21F9 in the content property

3

Unicode U+21F9 — LEFT RIGHT ARROW WITH VERTICAL STROKE

4

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

❓ Frequently Asked Questions

Use &#x21F9; (hex), &#8697; (decimal), or \21F9 in CSS content. There is no named entity. All three methods render ⇹ correctly.
U+21F9 (LEFT RIGHT ARROW WITH VERTICAL STROKE). Arrows block (U+2190–U+21FF). Hex 21F9, decimal 8697. Used for bidirectional arrows with a vertical stroke in notation.
In mathematical notation, logic, commutative diagrams, technical documentation, and any content requiring a left-right arrow with a vertical stroke (e.g. bidirectional relation with emphasis or a specific variant).
HTML references (&#8697; or &#x21F9;) go in markup. The CSS escape \21F9 is used in stylesheets, typically on ::before or ::after. Both produce ⇹.
No. There is no named HTML entity for U+21F9. You must use numeric codes: hexadecimal (&#x21F9;) or decimal (&#8697;) in HTML, or \21F9 in CSS content.

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