HTML Entity for Down Arrow With Double Stroke (⇟)

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

What You'll Learn

How to display the Down Arrow With Double Stroke (⇟) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21DF (DOWNWARDS ARROW WITH DOUBLE STROKE) in the Arrows block (U+2190–U+21FF)—a downward arrow with a double horizontal stroke, often used in logic notation, mathematical expressions, and technical documents.

Render it with ⇟, ⇟, or CSS escape \21DF. There is no named HTML entity for this symbol. For a single-stroke down arrow use ↓ (↓). For down with one horizontal stroke see the related horizontal-stroke variant in this arrow series.

⚡ Quick Reference — Down Arrow With Double Stroke

Unicode U+21DF

Arrows block

Hex Code ⇟

Hexadecimal reference

HTML Code ⇟

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21DF
Hex code       ⇟
HTML code      ⇟
Named entity   (none)
CSS code       \21DF
Related        U+2193 = Down arrow (↓); horizontal-stroke variants
1

Complete HTML Example

This example demonstrates the Down Arrow With Double Stroke (⇟) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21DF";
  }
 </style>
</head>
<body>
<p>Down Arrow With Double Stroke using Hexadecimal: &#x21DF;</p>
<p>Down Arrow With Double Stroke using HTML Code: &#8671;</p>
<p id="point">Down Arrow With Double Stroke using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21DF is widely supported in modern browsers when rendered with a font that includes Arrows:

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

👀 Live Preview

See the Down Arrow With Double Stroke (⇟) in logic and notation contexts:

Large glyph
Logic notation Premises ⇟ conclusion
vs down arrow ⇟ double stroke   ↓ plain down
In a formula A ⇟ B
Numeric refs &#x21DF; &#8671;

🧠 How It Works

1

Hexadecimal Code

&#x21DF; uses the Unicode hexadecimal value 21DF to display the Down Arrow With Double Stroke. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21DF 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+21DF. No named HTML entity—use numeric codes in markup.

Use Cases

The Down Arrow With Double Stroke (⇟) is commonly used in:

⊢ Logic notation

Entailment, deduction, or down-to-conclusion in formal logic and proofs.

∑ Math expressions

Reduction, convergence, or directional operations with a double-stroke variant.

📄 Academic docs

Specifications, proofs, or technical flows needing a distinct double-stroke arrow.

📊 Flowcharts

Downward flow with emphasis (double stroke) in process and logic diagrams.

📖 Documentation

Explain reduction steps, inference rules, or down-to relations in technical docs.

💻 UI design

Distinct icon when single-stroke down arrows are also used in the same system.

💡 Best Practices

Do

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

Don’t

  • Expect a named entity—none exists for U+21DF
  • Confuse ⇟ (double stroke) with ↓ (&darr;, plain down)
  • Put CSS escape \21DF in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume decorative fonts include all Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ⇟

&#x21DF; &#8671;
2

For CSS stylesheets, use the escape in the content property

\21DF
3

Unicode U+21DF — DOWNWARDS ARROW WITH DOUBLE STROKE

4

No named HTML entity—numeric codes only

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21DF; (hex), &#8671; (decimal), or \21DF in CSS content. There is no named entity. All produce ⇟.
U+21DF (DOWNWARDS ARROW WITH DOUBLE STROKE). Arrows block (U+2190–U+21FF). Hex 21DF, decimal 8671. A downward arrow with a double horizontal stroke.
In logic notation, mathematical expressions, technical and academic documents, flowchart symbols, and UI or documentation where a distinct double-stroke down arrow is needed.
HTML references (&#8671; or &#x21DF;) go in markup. The CSS escape \21DF 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. Many Arrows block characters use numeric references only. Use &#x21DF; or &#8671; 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