HTML Entity for Down Fish Tail (⥿)

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

What You'll Learn

How to display the Down Fish Tail (⥿) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+297F (DOWNWARDS HARPOON WITH BARB LEFT BESIDE LONG DASH) in the Supplemental Arrows-B block (U+2900–U+297F)—a downward arrow with a fish-tail (harpoon) style end, often used in mathematical notation, logic expressions, and academic content.

Render it with ⥿, ⥿, or CSS escape \297F. There is no named HTML entity for this symbol. For a plain down arrow use ↓ (↓). For a double down arrow use ⇓ (⇓).

⚡ Quick Reference — Down Fish Tail

Unicode U+297F

Supplemental Arrows-B

Hex Code ⥿

Hexadecimal reference

HTML Code ⥿

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+297F
Hex code       ⥿
HTML code      ⥿
Named entity   (none)
CSS code       \297F
Related        U+2193 = Down arrow (↓); U+21D3 = Double down (⇓)
1

Complete HTML Example

This example demonstrates the Down Fish Tail (⥿) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\297F";
  }
 </style>
</head>
<body>
<p>Down Fish Tail using Hexadecimal: &#x297F;</p>
<p>Down Fish Tail using HTML Code: &#10623;</p>
<p id="point">Down Fish Tail using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+297F is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:

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

👀 Live Preview

See the Down Fish Tail (⥿) in math and logic contexts:

Large glyph ⥿
Maps to A ⥿ B
vs plain down ⥿ fish tail   ↓ plain
In notation f(x) ⥿ limit
Numeric refs &#x297F; &#10623;

🧠 How It Works

1

Hexadecimal Code

&#x297F; uses the Unicode hexadecimal value 297F to display the Down Fish Tail. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\297F 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: ⥿. Unicode U+297F. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Down Fish Tail (⥿) is commonly used in:

∑ Math notation

Limits, convergence, or directional operations with a harpoon-style down arrow.

⊢ Logic expressions

Formal logic, proof systems, or maps-to / down-to relations.

📄 Academic content

Specifications, proofs, or technical flows where a fish-tail arrow is required.

📊 Flowcharts

Downward flow with a distinct harpoon or fish-tail in process diagrams.

📖 Documentation

Explain reduction, assignment, or down-to in developer and academic docs.

💻 UI design

Distinct down-harpoon icon when other arrow styles are also used in the same system.

💡 Best Practices

Do

  • Use &#x297F; or &#10623; consistently in markup
  • Add aria-label when the symbol means maps to or reduces to
  • Pair ⥿ with a legend in technical documents
  • Use \297F in CSS ::before / ::after for math or logic icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+297F
  • Confuse ⥿ (harpoon/fish tail) with ↓ (&darr;, plain down)
  • Put CSS escape \297F in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Supplemental Arrows-B glyphs

Key Takeaways

1

Two HTML numeric references render ⥿

&#x297F; &#10623;
2

For CSS stylesheets, use the escape in the content property

\297F
3

Unicode U+297F — DOWNWARDS HARPOON WITH BARB LEFT BESIDE LONG DASH

4

Supplemental Arrows-B block (U+2900–U+297F)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x297F; (hex), &#10623; (decimal), or \297F in CSS content. There is no named entity. All produce ⥿.
U+297F (DOWNWARDS HARPOON WITH BARB LEFT BESIDE LONG DASH). Supplemental Arrows-B (U+2900–U+297F). Hex 297F, decimal 10623. A downward arrow with a fish-tail (harpoon) style end.
In mathematical notation, logic expressions, academic and technical content, flowcharts, and documentation where a harpoon or fish-tail down arrow is needed.
HTML references (&#10623; or &#x297F;) go in markup. The CSS escape \297F is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Supplemental arrow and harpoon characters use numeric references only. Use &#x297F; or &#10623; in HTML.

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