HTML Entity for Down Harpoon With Barb Left From Bar (⥡)

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

What You'll Learn

How to display the Down Harpoon With Barb Left From Bar (⥡) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2961 (DOWNWARDS HARPOON WITH BARB LEFT FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a down harpoon with barb left, originating from a horizontal bar, used in scientific texts, mathematical notation, and specialized content.

Render it with ⥡, ⥡, or CSS escape \2961. There is no named HTML entity for this symbol. For a plain down harpoon with barb left (no bar) use ⇃ (⇃, U+21C3).

⚡ Quick Reference — Down Harpoon With Barb Left From Bar

Unicode U+2961

Supplemental Arrows-B

Hex Code ⥡

Hexadecimal reference

HTML Code ⥡

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2961
Hex code       ⥡
HTML code      ⥡
Named entity   (none)
CSS code       \2961
Related        U+21C3 = Barb left only (⇃); U+2965 = Paired down (⥥)
1

Complete HTML Example

This example demonstrates the Down Harpoon With Barb Left From Bar (⥡) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2961";
  }
 </style>
</head>
<body>
<p>Down Harpoon With Barb Left From Bar using Hexadecimal: &#x2961;</p>
<p>Down Harpoon With Barb Left From Bar using HTML Code: &#10593;</p>
<p id="point">Down Harpoon With Barb Left From Bar using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2961 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 Harpoon With Barb Left From Bar (⥡) in scientific and math contexts:

Large glyph
From bar ― ⥡ limit
vs barb left only ⥡ from bar   ⇃ plain
In notation bar ⥡ f(x)
Numeric refs &#x2961; &#10593;

🧠 How It Works

1

Hexadecimal Code

&#x2961; uses the Unicode hexadecimal value 2961 to display the Down Harpoon With Barb Left From Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2961 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+2961. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Down Harpoon With Barb Left From Bar (⥡) is commonly used in:

∑ Math notation

Limits from a bar, or down-from-bar relations in mathematics.

⊢ Logic and proofs

Formal logic or proof notation where a harpoon from bar is required.

📄 Scientific content

Technical flows and specs that use harpoon-from-bar symbols.

📊 Flowcharts

Flow downward from a bar in process and logic diagrams.

📖 Documentation

Explain from-bar or reduction in developer and academic docs.

💻 Symbol libraries

Symbol pickers or design systems that include harpoon characters.

💡 Best Practices

Do

  • Use &#x2961; or &#10593; consistently in markup
  • Add aria-label when the symbol means from bar or down from bar
  • Pair ⥡ with a legend in technical documents
  • Use \2961 in CSS ::before / ::after for harpoon-from-bar icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2961
  • Confuse ⥡ (from bar) with ⇃ (&dharl;, barb left only)
  • Put CSS escape \2961 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 ⥡

&#x2961; &#10593;
2

For CSS stylesheets, use the escape in the content property

\2961
3

Unicode U+2961 — DOWNWARDS HARPOON WITH BARB LEFT FROM BAR

4

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

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2961; (hex), &#10593; (decimal), or \2961 in CSS content. There is no named entity. All produce ⥡.
U+2961 (DOWNWARDS HARPOON WITH BARB LEFT FROM BAR). Supplemental Arrows-B (U+2900–U+297F). Hex 2961, decimal 10593. A down harpoon with barb left, originating from a horizontal bar.
In scientific texts, mathematical notation, technical documents, and specialized content where a harpoon from bar (limits from a bar, or down-from-bar relations) is needed.
HTML references (&#10593; or &#x2961;) go in markup. The CSS escape \2961 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 harpoon characters use numeric references only. Use &#x2961; or &#10593; 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