HTML Entity for Down Fish Tail (⥿)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+297F

What Is Down Fish Tail?

Down fish tail (⥿) is the Unicode character at U+297F in Supplemental Arrows-B. Official name: DOWN FISH TAIL. It is a fish-tail style down arrow — useful in math, logic, and technical notation.

Remember
Character     ⥿
Unicode       U+297F
Named entity  ⥿
Hex entity    ⥿
Decimal       ⥿
CSS escape    \297F
Not the same  ↓ (↓) · ⇓ (⇓) · ⥾ (⥾)

Prefer ⥿ in HTML markup. You can also type ⥿ in UTF-8, or use numeric forms when needed.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⥿HTML markup (preferred)
Direct character⥿HTML text (UTF-8)
Hex entity⥿HTML markup
Decimal entity⥿HTML markup
CSS escape\297FStylesheet content
Plain down (related)↓ (↓, U+2193)Solid down — not fish-tail

When to Use Which

SituationUse
Down fish-tail arrow⥿ or type ⥿
Up / left / right fish tail⥾ · ⥼ · ⥽
Plain solid down arrow↓
Double down arrow⇓
Generated text via ::before / ::aftercontent: "\297F"

Live Preview

Down fish tail rendered alone, in a label, and compared with related arrows.

Glyph ⥿
Large glyph ⥿
Notation A ⥿ B
Compared ⥿   ⥾   ⥼   ⥽   ↓   ⇓
With entities Named: ⥿ | Hex: ⥿ | Decimal: ⥿

Complete HTML Example

One page that shows Down Fish Tail with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to display ⥿ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Down Fish Tail (U+297F) in HTML</title>
  <style>
    #point::after {
      content: "\297F";
    }
  </style>
</head>
<body>
  <p>Built with Named: &dfisht;</p>
  <p>Built with Hex: &#x297F;</p>
  <p>Built with Decimal: &#10623;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ⥿</p>
  <p>Label: Flow &dfisht;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &dfisht; is the preferred HTML5 name for U+297F → ⥿.

2. Hex / decimal: &#x297F; and &#10623; insert the same code point.

3. CSS: use \297F in content (not an HTML entity). #point::after appends ⥿.

4. Typed: paste ⥿ in a UTF-8 document, or pair it with a label like Flow &dfisht;.

Pitfalls & Tips

Common mistakes when working with Down Fish Tail.

Name

Prefer &dfisht;

HTML5 provides &dfisht; for U+297F. Prefer the named form over numeric when you can.

↓

Not &darr;

&darr; is the plain down arrow (U+2193). U+297F has a fish-tail tip.

Direction

Match the direction name

&ufisht;, &lfisht;, and &rfisht; are siblings — do not reuse &dfisht; for other directions.

CSS vs HTML

Do not mix escapes

\297F belongs in CSS strings. &dfisht; / &#x297F; belong in HTML.

Fonts

Arrow font coverage

Some fonts omit Supplemental Arrows-B glyphs. Prefer a font with solid math/arrow coverage.

a11y

Add accessible text

A lone fish-tail arrow can be unclear to screen readers. Pair it with visible text or an aria-label.

Semicolon

End references

Always finish entities with ; — write &dfisht;, not &dfisht.

Browser Support

Down fish tail (U+297F) and its entity forms (&dfisht;, &#x297F;, &#10623;, CSS \\297F) are supported in all mainstream browsers. Visible glyphs depend on Supplemental Arrows-B font coverage.

✓ Universal support

Down Fish Tail (&#x297F;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+297F / &dfisht; Full support

Bottom line: Prefer &dfisht; in HTML. Use &#x297F; / &#10623; when numeric form is required, and \\297F only inside CSS content.

Key Takeaways

  • Unicode: down fish tail is U+297F (decimal 10623) — glyph ⥿.
  • HTML: prefer &dfisht; (or &#x297F; / &#10623;).
  • CSS: use \297F inside content for generated text.
  • Meaning: ⥿ = fish-tail tip — not &darr;, not &dArr;.

One line: U+297F → &dfisht; / &#x297F; / CSS \297F.

Frequently Asked Questions

Use &dfisht; (named), &#x297F; (hex), &#10623; (decimal), type ⥿ directly in UTF-8, or the CSS escape \297F in content. Prefer &dfisht; in normal HTML.
U+297F (DOWN FISH TAIL). Hex 297F, decimal 10623. It belongs to the Supplemental Arrows-B block (U+2900–U+297F).
Yes. Use &dfisht;. Numeric forms &#10623; and &#x297F; also work. Direction siblings are &ufisht;, &lfisht;, and &rfisht;.
Use it in math, logic, or technical docs that need a fish-tail style down arrow. Prefer &darr; for a plain down arrow, and &dArr; for a double down arrow.
HTML entities (&dfisht;, &#10623;, or &#x297F;) go in markup. The CSS escape \297F goes in stylesheet strings (usually content on ::before/::after).
No. &dfisht; is ⥿ (U+297F). &darr; is ↓ (U+2193). &dArr; is ⇓ (U+21D3). They are different glyphs.

Did you know?

Down fish tail is Unicode U+297F (decimal 10623) — glyph ⥿ (DOWN FISH TAIL) in Supplemental Arrows-B. HTML5 names it &dfisht;. Direction siblings: up &ufisht; (⥾), left &lfisht; (⥼), right &rfisht; (⥽). Plain down is &darr; (↓).

Next: Down Harpoon Beside Up Harpoon

Learn the HTML entity for down harpoon barb left beside up harpoon barb right.

Next harpoon tutorial →

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