HTML Entity for Long Right Arrow From Bar (⟼)

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

What You'll Learn

How to display the Long Right Arrow From Bar (⟼) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+27FC (LONG RIGHTWARDS ARROW FROM BAR) in the Supplemental Arrows-C block.

Render it with ⟼, ⟼, ⟼, or CSS escape \27FC. It combines a vertical bar with a long right arrow and is often used for “maps to” in math and technical content. For the long right arrow without a bar, see Long Right Arrow (⟶, ⟶).

⚡ Quick Reference — Long Right Arrow From Bar

Unicode U+27FC

Supplemental Arrows-C

Hex Code ⟼

Hexadecimal reference

HTML Code ⟼

Decimal reference

Named Entity ⟼

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27FC
Hex code       ⟼
HTML code      ⟼
Named entity   ⟼
CSS code       \27FC
Meaning        Long rightwards arrow from bar
Related        U+27F6 = ⟶ (⟶)
Block          Supplemental Arrows-C
1

Complete HTML Example

A simple example showing the Long Right Arrow From Bar (⟼) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27FC";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x27FC;</p>
<p>Symbol (decimal): &#10236;</p>
<p>Symbol (named): &xmap;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Long Right Arrow From Bar (⟼) is supported in modern browsers when the font includes Supplemental Arrows glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Long Right Arrow From Bar (⟼) in math and diagram contexts:

Large glyph
Maps tox ⟼ f(x)
FunctionDomain ⟼ Range
Compare⟼ (from bar) vs ⟶ (long right)
Numeric refs&#x27FC; &#10236; &xmap; \27FC

🧠 How It Works

1

Hexadecimal Code

&#x27FC; uses the Unicode hexadecimal value 27FC to display the arrow from bar.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&xmap; is the semantic named entity for ⟼—readable for “maps to” notation in source HTML.

HTML markup
4

CSS Entity

\27FC is used in CSS stylesheets, particularly in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+27FC is in Supplemental Arrows-C. Previous: Long Right Arrow.

Use Cases

The Long Right Arrow From Bar (⟼) is commonly used in:

📐 Math notation

“Maps to” notation and function definitions (e.g. x ⟼ f(x)).

📊 Flowcharts

Diagrams showing mapping or assignment from a bar to the right.

📄 Technical docs

Indicate “maps to” or assignment in API docs and specifications.

🔬 Logic & sets

Represent mappings or relations in logic and set theory.

🌐 UI elements

Distinct mapping or “assign to” indicator with bar styling.

📚 Education

Explain functions, mappings, or assignments in textbooks and tutorials.

💡 Best Practices

Do

  • Use &xmap; for readable “maps to” markup
  • Clarify meaning in math (e.g. “maps to,” “function definition”)
  • Pair the symbol with text or ARIA labels for accessibility
  • Use fonts that support Supplemental Arrows for consistent rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &xmap; (⟼) with &xrarr; (⟶) or ⟻ (long left from bar)
  • Put CSS escape \27FC in HTML text nodes
  • Assume every font renders supplemental arrows identically—test on mobile
  • Rely on the arrow glyph alone for screen reader users
  • Use ⟼ for simple forward navigation when ⟶ is sufficient

Key Takeaways

1

Four HTML/CSS references all render ⟼

&#x27FC; &#10236; &xmap;
2

For CSS stylesheets, use the escape in the content property

\27FC
3

Unicode U+27FC — LONG RIGHTWARDS ARROW FROM BAR

4

Prefer &xmap; for maps-to; long right arrow is &xrarr;

❓ Frequently Asked Questions

Use &#x27FC; (hex), &#10236; (decimal), &xmap; (named), or \27FC in CSS content. All produce ⟼.
U+27FC (LONG RIGHTWARDS ARROW FROM BAR). Supplemental Arrows-C block. Hex 27FC, decimal 10236. Named entity: &xmap;.
For mathematical maps-to notation, function definitions, technical documentation, flowcharts, and UI elements that indicate mapping or assignment to the right.
&xmap; is the named HTML entity for ⟼. It is part of the HTML5 named character set and the most readable option for maps-to notation.
⟶ (&xrarr;) is the long rightwards arrow without a bar. ⟻ is the long leftwards arrow from bar (no named entity). ⟼ (&xmap;) is the long rightwards arrow from bar.

Explore More HTML Entities!

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