HTML Entity for Three Lines Converging Left (⚟)

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

What You'll Learn

How to display the Three Lines Converging Left symbol (⚟) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+269F (THREE LINES CONVERGING LEFT) in the Miscellaneous Symbols block (U+2600–U+26FF)—a directional symbol showing three lines converging toward the left.

Render it with ⚟, ⚟, or CSS escape \269F. There is no named HTML entity. Do not confuse ⚟ with ⚞ (THREE LINES CONVERGING RIGHT, U+269E)—the mirror counterpart pointing right.

⚡ Quick Reference — Three Lines Converging Left

Unicode U+269F

Miscellaneous Symbols

Hex Code ⚟

Hexadecimal reference

HTML Code ⚟

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+269F
Hex code       ⚟
HTML code      ⚟
Named entity   (none)
CSS code       \269F
Block          Miscellaneous Symbols (U+2600–U+26FF)
Official name  THREE LINES CONVERGING LEFT
Related        U+269E = Three Lines Converging Right (⚞)
1

Complete HTML Example

This example demonstrates the Three Lines Converging Left symbol (⚟) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\269F";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x269F;</p>
<p>Using HTML Code: &#9887;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Three Lines Converging Left symbol renders in modern browsers when fonts include Miscellaneous Symbols glyphs:

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

👀 Live Preview

See the Three Lines Converging Left symbol (⚟) in directional context:

Flow indicator Paths merge ⚟ left
Large glyph
Left vs right ⚟ converging left   ⚞ converging right
Numeric refs &#x269F; &#9887; \269F

🧠 How It Works

1

Hexadecimal Code

&#x269F; uses the Unicode hexadecimal value 269F to display the Three Lines Converging Left symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+269F in the Miscellaneous Symbols block (U+2600–U+26FF). No named entity.

Use Cases

The Three Lines Converging Left symbol (⚟) commonly appears in:

📊 Design Diagrams

Technical drawings showing convergence or directional flow.

🚀 Flowcharts

Process diagrams with paths merging leftward.

🗼 Directional Graphics

Navigation elements and wayfinding indicators.

📝 Technical Docs

Engineering diagrams and system architecture visuals.

💻 Interactive UI

Web apps and interfaces needing directional markers.

📈 Process Maps

Business process maps and organizational charts.

🎓 Education

Tutorials and instructional content on directional concepts.

💡 Best Practices

Do

  • Use &#x269F; or &#9887; for the converging-left glyph
  • Add aria-label when the symbol conveys direction alone
  • Use CSS font-size to scale the symbol in diagrams
  • Pair with text labels for clarity in flowcharts
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⚟ (left) with ⚞ (right converging lines)
  • Assume every font renders Miscellaneous Symbols clearly
  • Put CSS escape \269F directly in HTML text nodes
  • Expect a named HTML entity for U+269F—use numeric references
  • Use HTML entities in JS (use \u269F instead)

Key Takeaways

1

Two HTML references both render ⚟

&#x269F; &#9887;
2

For CSS stylesheets, use the escape in the content property

\269F
3

Unicode U+269F — THREE LINES CONVERGING LEFT

4

No named entity—use numeric references or CSS escape

5

Mirror counterpart: ⚞ (THREE LINES CONVERGING RIGHT)

❓ Frequently Asked Questions

Use &#x269F; (hex), &#9887; (decimal), or \269F in CSS content. There is no named HTML entity. All three produce ⚟.
U+269F (THREE LINES CONVERGING LEFT). Miscellaneous Symbols block (U+2600–U+26FF). Hex 269F, decimal 9887.
In design diagrams, flowcharts, directional graphics, technical documentation, interactive UI, process flow diagrams, and any content representing convergence or leftward directional flow.
HTML numeric references (&#9887; or &#x269F;) go directly in markup. The CSS escape \269F is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ⚟ in the Miscellaneous Symbols block use numeric hex or decimal references—standard practice for specialized symbolic characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, arrows, 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