HTML Entity for Right Fish Tail (⥽)

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

What You'll Learn

How to display the Right Fish Tail (⥽) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+297D (RIGHT FISH TAIL) in the Supplemental Arrows-B block (U+2900–U+297F)—a combined harpoon symbol (rightwards harpoon with barb down above rightwards harpoon with barb up), used in mathematical notation, category theory, flow diagrams, and decorative arrows.

Render it with ⥽ (named), ⥽, ⥽, or CSS \297D. Related: U+297C (⥼, left fish tail / ⥼), harpoon symbols in the same block.

⚡ Quick Reference — Right Fish Tail

Unicode U+297D

Supplemental Arrows-B

Hex Code ⥽

Hexadecimal reference

HTML Code ⥽

Decimal reference

Named Entity ⥽

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+297D
Hex code       ⥽
HTML code      ⥽
Named entity   ⥽
CSS code       \297D
Meaning        Right fish tail (combined harpoon)
Related        U+297C = left fish tail (⥼)
               U+2907 = right double arrow from bar (⤇)
1

Complete HTML Example

A simple example showing the Right Fish Tail (⥽) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\297D";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x297D;</p>
<p>Symbol using HTML Code: &#10621;</p>
<p>Symbol using HTML Entity: &rfisht;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Right Fish Tail (⥽) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Right Fish Tail (⥽) in math and diagram contexts:

Math notation f ⥽ g
Flow diagram A ⥽ B
Direction Start ⥽
Large glyph
Symbol comparison ⥼ ⥽ ⤇ ⇒
Entity refs &rfisht; &#x297D; &#10621; \297D

🧠 How It Works

1

Named HTML Entity

&rfisht; is the named entity for the Right Fish Tail (combined right harpoon symbol). Easy to read in math and diagram markup.

HTML markup
2

Hexadecimal Code

&#x297D; uses the Unicode hexadecimal value 297D. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#10621; uses the decimal Unicode value 10621 for the same symbol.

HTML markup
4

CSS Entity

\297D is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+297D is in Supplemental Arrows-B. Previous: Right Double Quotation Mark (”).

Use Cases

The Right Fish Tail (⥽) is commonly used in:

📐 Math notation

Represent combined harpoon relations in mathematical and scientific documents.

📊 Category theory

Document morphisms, functors, and mappings in theoretical math content.

📚 Technical docs

Illustrate specialized arrow symbols in guides and reference material.

🎯 Decorative arrows

Distinct right-pointing fish-tail symbol in UI labels, icons, and design elements.

🖼 Diagrams

Chemistry, physics, or logic diagrams that use harpoon-style notation.

🗃 Entity reference

Document and teach HTML entity usage for Supplemental Arrows-B symbols.

💡 Best Practices

Do

  • Prefer &rfisht; in HTML for readability
  • Use fonts that support Supplemental Arrows-B (U+297D)
  • Set <meta charset="utf-8">
  • Pair with explanatory text or labels for accessibility in UI
  • Keep one encoding style per project for consistency
  • Distinguish ⥽ from simple right arrows when symbol meaning matters

Don’t

  • Confuse &rfisht; (U+297D) with &rarr; (U+2192, simple right arrow)
  • Confuse &rfisht; with &lfisht; (U+297C, left fish tail)
  • Use CSS \297D inside HTML text nodes
  • Assume legacy systems render Supplemental Arrows-B without testing
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+297D in HTML and CSS

&rfisht; &#x297D; &#10621;
2

For CSS, use \297D in the content property

3

Unicode U+297D — RIGHT FISH TAIL

4

Supplemental Arrows-B block (U+2900–U+297F) — named entity &rfisht;

❓ Frequently Asked Questions

Use &rfisht; (named), &#x297D; (hex), &#10621; (decimal), or \297D in CSS content. All four methods render ⥽ correctly.
U+297D (RIGHT FISH TAIL). Supplemental Arrows-B block (U+2900–U+297F). Hex 297D, decimal 10621. Rightwards harpoon with barb down above rightwards harpoon with barb up.
In mathematical notation, category theory, flow diagrams, decorative arrows, and any design that needs a right fish tail (combined harpoon) symbol.
Named and numeric HTML references (&rfisht;, &#10621;, &#x297D;) go in markup. The CSS escape \297D is used in stylesheets, typically on ::before or ::after. Both produce ⥽.
Yes. &rfisht; is the named HTML entity for U+297D. You can also use &#10621; (decimal) or &#x297D; (hex) and \297D in CSS.

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