HTML Entity for Down Quadruple Arrow (⟱)

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

What You'll Learn

How to display the Down Quadruple Arrow (⟱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27F1 (DOWNWARDS QUADRUPLE ARROW) in the Supplemental Arrows-A block (U+27F0–U+27FF)—a vertical quadruple arrow pointing downward, used in navigation, UI design, mathematical notation, and technical content.

Render it with ⟱, ⟱, or CSS escape \27F1. There is no named HTML entity for this symbol. Compare ⇓ (⇓, double down) or triple-down arrows in the same block family.

⚡ Quick Reference — Down Quadruple Arrow

Unicode U+27F1

Supplemental Arrows-A

Hex Code ⟱

Hexadecimal reference

HTML Code ⟱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27F1
Hex code       ⟱
HTML code      ⟱
Named entity   (none)
CSS code       \27F1
Related        U+21D3 = Double down (⇓); U+2955 = Harpoon to bar
1

Complete HTML Example

This example demonstrates the Down Quadruple Arrow (⟱) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27F1";
  }
 </style>
</head>
<body>
<p>Down Quadruple Arrow using Hexadecimal: &#x27F1;</p>
<p>Down Quadruple Arrow using HTML Code: &#10225;</p>
<p id="point">Down Quadruple Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+27F1 is supported in modern browsers when rendered with a font that includes Supplemental Arrows-A:

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

👀 Live Preview

See the Down Quadruple Arrow (⟱) in navigation and UI contexts:

Large glyph
Scroll down More content ⟱
vs double down ⟱ quadruple   ⇓ double
Sort / emphasis Priority ⟱ lowest
Numeric refs &#x27F1; &#10225;

🧠 How It Works

1

Hexadecimal Code

&#x27F1; uses the Unicode hexadecimal value 27F1 to display the Down Quadruple Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Down Quadruple Arrow (⟱) is commonly used in:

∑ Math notation

Strong downward relations or emphasis in mathematical notation.

💻 UI and navigation

Scroll-down, expand, or move-to-next indicators in interfaces.

📊 Diagrams

Flowcharts and technical diagrams that need a strong down arrow.

📊 Flowcharts

Show maximum downward flow in process and logic diagrams.

📖 Documentation

Explain sort order, priority, or downward steps in developer docs.

💻 Web design

Symbol pickers or design systems that include multi-stroke arrows.

💡 Best Practices

Do

  • Use &#x27F1; or &#10225; consistently in markup
  • Add aria-label when the symbol means scroll down or move downward
  • Pair ⟱ with a legend in technical documents
  • Use \27F1 in CSS ::before / ::after for down-arrow icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+27F1
  • Confuse ⟱ (quadruple) with ⇓ (&dArr;, double down only)
  • Put CSS escape \27F1 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Supplemental Arrows-A glyphs

Key Takeaways

1

Two HTML numeric references render ⟱

&#x27F1; &#10225;
2

For CSS stylesheets, use the escape in the content property

\27F1
3

Unicode U+27F1 — DOWNWARDS QUADRUPLE ARROW

4

Supplemental Arrows-A block (U+27F0–U+27FF)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x27F1; (hex), &#10225; (decimal), or \27F1 in CSS content. There is no named entity. All produce ⟱.
U+27F1 (DOWNWARDS QUADRUPLE ARROW). Supplemental Arrows-A (U+27F0–U+27FF). Hex 27F1, decimal 10225. A vertical quadruple arrow pointing downward.
In navigation and UI design, mathematical notation, technical documentation, flowcharts, and content where strong downward direction or quadruple emphasis is needed.
HTML references (&#10225; or &#x27F1;) go in markup. The CSS escape \27F1 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 characters use numeric references only. Use &#x27F1; or &#10225; 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