HTML Entity for Three Lines Converging Right (⚞)

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

What You'll Learn

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

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

⚡ Quick Reference — Three Lines Converging Right

Unicode U+269E

Miscellaneous Symbols

Hex Code ⚞

Hexadecimal reference

HTML Code ⚞

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

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

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

🌐 Browser Support

The Three Lines Converging Right 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 Right symbol (⚞) in directional context:

Flow indicator Paths merge right ⚞
Large glyph
Left vs right ⚟ converging left   ⚞ converging right
Numeric refs &#x269E; &#9886; \269E

🧠 How It Works

1

Hexadecimal Code

&#x269E; uses the Unicode hexadecimal value 269E to display the Three Lines Converging Right symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\269E 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+269E in the Miscellaneous Symbols block (U+2600–U+26FF). No named entity.

Use Cases

The Three Lines Converging Right symbol (⚞) commonly appears in:

📊 Design Diagrams

Technical drawings showing convergence or directional flow.

🚀 Flowcharts

Process diagrams with paths merging rightward.

🗼 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 &#x269E; or &#9886; for the converging-right 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 ⚞ (right) with ⚟ (left converging lines)
  • Assume every font renders Miscellaneous Symbols clearly
  • Put CSS escape \269E directly in HTML text nodes
  • Expect a named HTML entity for U+269E—use numeric references
  • Use HTML entities in JS (use \u269E instead)

Key Takeaways

1

Two HTML references both render ⚞

&#x269E; &#9886;
2

For CSS stylesheets, use the escape in the content property

\269E
3

Unicode U+269E — THREE LINES CONVERGING RIGHT

4

No named entity—use numeric references or CSS escape

5

Mirror counterpart: ⚟ (THREE LINES CONVERGING LEFT)

❓ Frequently Asked Questions

Use &#x269E; (hex), &#9886; (decimal), or \269E in CSS content. There is no named HTML entity. All three produce ⚞.
U+269E (THREE LINES CONVERGING RIGHT). Miscellaneous Symbols block (U+2600–U+26FF). Hex 269E, decimal 9886.
In design diagrams, flowcharts, directional graphics, technical documentation, interactive UI, process flow diagrams, and any content representing convergence or rightward directional flow.
HTML numeric references (&#9886; or &#x269E;) go directly in markup. The CSS escape \269E 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