HTML Entity for Right Fish Tail (⥽)

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
U+297DSupplemental Arrows-B
⥽Hexadecimal reference
⥽Decimal reference
⥽Most readable option
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 (⤇)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\297D";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥽</p>
<p>Symbol using HTML Code: ⥽</p>
<p>Symbol using HTML Entity: ⥽</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Right Fish Tail (⥽) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Fish Tail (⥽) in math and diagram contexts:
🧠 How It Works
Named HTML Entity
⥽ is the named entity for the Right Fish Tail (combined right harpoon symbol). Easy to read in math and diagram markup.
Hexadecimal Code
⥽ uses the Unicode hexadecimal value 297D. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥽ uses the decimal Unicode value 10621 for the same symbol.
CSS Entity
\297D is used in CSS stylesheets in the content property of pseudo-elements like ::after.
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:
Represent combined harpoon relations in mathematical and scientific documents.
Document morphisms, functors, and mappings in theoretical math content.
Illustrate specialized arrow symbols in guides and reference material.
Distinct right-pointing fish-tail symbol in UI labels, icons, and design elements.
Chemistry, physics, or logic diagrams that use harpoon-style notation.
Document and teach HTML entity usage for Supplemental Arrows-B symbols.
💡 Best Practices
Do
- Prefer
⥽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
⥽(U+297D) with→(U+2192, simple right arrow) - Confuse
⥽with⥼(U+297C, left fish tail) - Use CSS
\297Dinside HTML text nodes - Assume legacy systems render Supplemental Arrows-B without testing
- Mix named and numeric entities inconsistently in the same component
Key Takeaways
Four ways to render U+297D in HTML and CSS
⥽ ⥽ ⥽For CSS, use \297D in the content property
Unicode U+297D — RIGHT FISH TAIL
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⥽
Previous: Right Double Quotation Mark (”) Next: Right Half Ring Above
❓ Frequently Asked Questions
⥽ (named), ⥽ (hex), ⥽ (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.⥽, ⥽, ⥽) go in markup. The CSS escape \297D is used in stylesheets, typically on ::before or ::after. Both produce ⥽.⥽ is the named HTML entity for U+297D. You can also use ⥽ (decimal) or ⥽ (hex) and \297D in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
