HTML Entity for Left Fish Tail (⥼)

What You'll Learn
How to display the Left Fish Tail (⥼) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+297C (LEFT FISH TAIL) in the Supplemental Arrows-B block (U+2900–U+297F)—a combined harpoon symbol (leftwards harpoon with barb up above leftwards harpoon with barb down), used in mathematical notation, flow diagrams, and decorative arrows.
Render it with ⥼ (named), ⥼, ⥼, or CSS \297C. Related: U+297D (⥽, right fish tail / ⥽), harpoon symbols in the same block.
⚡ Quick Reference — Left Fish Tail
U+297CSupplemental Arrows-B
⥼Hexadecimal reference
⥼Decimal reference
⥼Most readable option
Name Value
──────────── ──────────
Unicode U+297C
Hex code ⥼
HTML code ⥼
Named entity ⥼
CSS code \297C
Meaning Left fish tail (combined harpoon)
Related U+297D = right fish tail (⥽)
U+2906 = left double arrow from bar (⤆)Complete HTML Example
A simple example showing the Left Fish Tail (⥼) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\297C";
}
</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 Left Fish Tail (⥼) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Fish Tail (⥼) in math and diagram contexts:
🧠 How It Works
Named HTML Entity
⥼ is the named entity for the Left Fish Tail (combined left harpoon symbol). Easy to read in math and diagram markup.
Hexadecimal Code
⥼ uses the Unicode hexadecimal value 297C. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥼ uses the decimal Unicode value 10620 for the same symbol.
CSS Entity
\297C is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥼. Unicode U+297C is in Supplemental Arrows-B. Previous: Left Double Quotation Mark.
Use Cases
The Left Fish Tail (⥼) is commonly used in:
Represent combined harpoon relations in mathematical and scientific documents.
Show direction or relationships where a fish-tail harpoon variant is needed.
Illustrate specialized arrow symbols in guides and reference material.
Distinct left-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+297C)
- 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 left arrows when symbol meaning matters
Don’t
- Confuse
⥼(U+297C) with←(U+2190, simple left arrow) - Confuse
⥼with⥽(U+297D, right fish tail) - Use CSS
\297Cinside 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+297C in HTML and CSS
⥼ ⥼ ⥼For CSS, use \297C in the content property
Unicode U+297C — LEFT FISH TAIL
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⥼
Previous: Left Double Quotation Mark (“) Next: Left Half Ring Above
❓ Frequently Asked Questions
⥼ (named), ⥼ (hex), ⥼ (decimal), or \297C in CSS content. All four methods render ⥼ correctly.U+297C (LEFT FISH TAIL). Supplemental Arrows-B block (U+2900–U+297F). Hex 297C, decimal 10620. Leftwards harpoon with barb up above leftwards harpoon with barb down.⥼, ⥼, ⥼) go in markup. The CSS escape \297C is used in stylesheets, typically on ::before or ::after. Both produce ⥼.⥼ is the named HTML entity for U+297C. You can also use ⥼ (decimal) or ⥼ (hex) and \297C in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
