HTML Entity for Tape Drive (✇)

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

What You'll Learn

How to display the Tape Drive symbol (✇) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2707 (TAPE DRIVE) in the Dingbats block (U+2700–U+27BF)—a storage device icon used in IT interfaces, backup systems, and technology documentation.

Render it with ✇, ✇, or CSS escape \2707. There is no named HTML entity. Do not confuse ✇ (tape drive) with ✈ (airplane, U+2708) or ✉ (envelope, U+2709)—adjacent Dingbats with different meanings.

⚡ Quick Reference — Tape Drive

Unicode U+2707

Dingbats

Hex Code ✇

Hexadecimal reference

HTML Code ✇

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2707
Hex code       ✇
HTML code      ✇
Named entity   (none)
CSS code       \2707
Block          Dingbats (U+2700–U+27BF)
Related        U+2708 = Airplane (✈), U+2709 = Envelope (✉)
1

Complete HTML Example

This example demonstrates the Tape Drive symbol (✇) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2707";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x2707;</p>
<p>Using HTML Code: &#9991;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Tape Drive symbol is supported in all modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the Tape Drive symbol (✇) in context and compared with nearby Dingbats:

Storage UI ✇ Backup Storage
Large glyph
Nearby Dingbats ✇ tape   ✈ airplane   ✉ envelope
Numeric refs &#x2707; &#9991; \2707

🧠 How It Works

1

Hexadecimal Code

&#x2707; uses the Unicode hexadecimal value 2707 to display the Tape Drive symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2707 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 the glyph: . Unicode U+2707 in the Dingbats block (U+2700–U+27BF). No named entity.

Use Cases

The Tape Drive symbol (✇) commonly appears in:

💻 Tech Interfaces

System admin panels and IT management dashboards.

💾 Storage Icons

Backup systems and data storage applications.

📚 IT Documentation

Technical manuals and system administration guides.

🔒 Backup Systems

Archival systems and data backup interfaces.

🖥 Server Management

Infrastructure monitoring and storage device lists.

🎓 Education

IT training materials covering storage devices.

🛠 DevOps Tools

CI/CD and deployment dashboards with storage labels.

💡 Best Practices

Do

  • Use &#x2707; or &#9991; for the tape drive icon
  • Add aria-label="Tape drive" or visible text for accessibility
  • Pick one style (hex or decimal) per project for consistency
  • Use Dingbats-friendly fonts for consistent rendering
  • Test across browsers and devices

Don’t

  • Confuse ✇ (tape drive) with ✈ (airplane) or ✉ (envelope)
  • Rely on the symbol alone without accessible labeling
  • Put CSS escape \2707 directly in HTML text nodes
  • Expect a named HTML entity for U+2707—use numeric references
  • Use HTML entities in JS (use \u2707 instead)

Key Takeaways

1

Two HTML references both render ✇

&#x2707; &#9991;
2

For CSS stylesheets, use the escape in the content property

\2707
3

Unicode U+2707 — TAPE DRIVE

4

No named entity—use numeric references or CSS escape

5

Part of Dingbats alongside airplane (✈) and envelope (✉)

❓ Frequently Asked Questions

Use &#x2707; (hex), &#9991; (decimal), or \2707 in CSS content. There is no named HTML entity. All three produce ✇.
U+2707 (TAPE DRIVE). Dingbats block (U+2700–U+27BF). Hex 2707, decimal 9991.
In technology interfaces, storage icons, backup systems, IT documentation, system administration panels, server management tools, and any content representing tape drives or archival storage.
HTML numeric references (&#9991; or &#x2707;) go directly in markup. The CSS escape \2707 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ✇ in the Dingbats block use numeric hex or decimal references—standard practice for symbolic Unicode characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — Dingbats, symbols, math, 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