HTML Entity for Up Fish Tail (⥾)

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

What You'll Learn

How to display the Up Fish Tail (⥾) in HTML using hexadecimal, decimal, the named entity ⥾, and CSS escape methods. This character is U+297E (UPWARDS FISH TAIL) in the Supplemental Arrows-B block (U+2900–U+297F)—an upward-pointing arrow with a fish tail design, used in mathematical notation, directional indicators, and specialized navigation symbols.

Render it with ⥾, ⥾, ⥾, or CSS escape \297E. Compare ↑ (up arrow, U+2191, ↑) for a standard upward arrow without a fish tail design.

⚡ Quick Reference — Up Fish Tail

Unicode U+297E

Supplemental Arrows-B

Hex Code ⥾

Hexadecimal reference

HTML Code ⥾

Decimal reference

Named Entity ⥾

HTML5 named entity for U+297E

Reference Table
Name           Value
────────────   ──────────
Unicode        U+297E
Hex code       ⥾
HTML code      ⥾
Named entity   ⥾
CSS code       \297E
Official name  UPWARDS FISH TAIL
Related        U+2191 = Up arrow (↑)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⥾ with hex, decimal, named entity, and CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\297E";
  }
 </style>
</head>
<body>
<p>Fish Tail Up (hex): &#x297E;</p>
<p>Fish Tail Up (decimal): &#10622;</p>
<p>Fish Tail Up (entity): &ufisht;</p>
<p id="point">Fish Tail Up (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+297E 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 Up Fish Tail (⥾) in mathematical and UI contexts:

Large glyph
Upward movement Move up ⥾
Math notation f(x) ⥾ limit
vs up arrow ⥾ fish tail   ↑ standard
Named entity &ufisht; → ⥾
All HTML refs &#x297E; &#10622; &ufisht;

🧠 How It Works

1

Hexadecimal Code

&#x297E; uses the Unicode hexadecimal value 297E to display the Up Fish Tail. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&ufisht; is the HTML5 named entity for U+297E. It is easy to read in source and resolves to ⥾.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+297E in the Supplemental Arrows-B block (U+2900–U+297F). The fish tail design distinguishes this upward arrow from standard arrows.

Use Cases

The Up Fish Tail (⥾) is commonly used in:

🔢 Mathematical notation

Equations and scientific documents using fish tail arrow symbols.

📜 Directional indicators

UI elements showing upward movement with a distinctive fish tail design.

🎨 UI design

Buttons and controls needing specialized upward arrow iconography.

🛠 Iconography

Icon sets with fish tail upward arrows for visual distinction.

🗺 Technical diagrams

Flowcharts and vector diagrams with fish tail directional arrows.

💻 Scientific content

Research papers and academic materials using fish tail notation.

💡 Best Practices

Do

  • Use &ufisht; for readable markup, or &#x297E; / &#10622;
  • Add aria-label when the arrow conveys navigation or mathematical meaning
  • Use fish tail arrows when the distinctive design adds semantic value
  • Use \297E in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use U+0297E or CSS \0297E—the correct value is U+297E and \297E
  • Call it Supplemental Arrows-C—U+297E is in Supplemental Arrows-B (U+2900–U+297F)
  • Put CSS escape \297E in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume all decorative fonts include Supplemental Arrows-B glyphs

Key Takeaways

1

Named entity available: &ufisht;

&#x297E; &#10622;
2

For CSS stylesheets, use \297E in content

3

Unicode U+297E — UPWARDS FISH TAIL

4

Standard up arrow: ↑ via &uarr; (U+2191)

5

Four methods, one glyph — Supplemental Arrows-B block

❓ Frequently Asked Questions

Use &#x297E; (hex), &#10622; (decimal), &ufisht; (named entity), or \297E in CSS content. All produce ⥾.
U+297E (UPWARDS FISH TAIL). Supplemental Arrows-B block (U+2900–U+297F). Hex 297E, decimal 10622.
In mathematical notation, directional indicators, navigation elements, UI design, and any content needing an upward fish tail arrow style.
&ufisht; is easier to read in source than &#10622; or &#x297E;, but all produce ⥾.
The named HTML entity is &ufisht;. It is part of the HTML5 named entity set, making it convenient to use instead of numeric hex or decimal references.

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