HTML Entity for Black Scissors (✂)

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

What You'll Learn

How to display Black Scissors (✂) in HTML and CSS. This character is U+2702 in the Dingbats block (U+2700–U+27BF), approved in Unicode 1.1 (1993). Its Unicode name is BLACK SCISSORS—commonly used for cut, copy, or trimming actions in user interfaces and creative projects.

There is no named HTML entity for U+2702. Use ✂ or ✂ in markup, or \2702 in stylesheet content. You can add Variation Selector-16 (U+FE0F) for colorful emoji display (✂️) in supporting contexts. Pair tool glyphs with visible text or aria-label (for example “Cut” or “Scissors”).

⚡ Quick Reference — Black Scissors

Unicode U+2702

Dingbats (U+2700–U+27BF)

Hex Code ✂

Hexadecimal reference

HTML Code ✂

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2702
Hex code       ✂
HTML code      ✂
Named entity   —
CSS code       \2702
1

Complete HTML Example

This example shows U+2702 using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2702";
  }
 </style>
</head>
<body>
<p>Black Scissors using Hexa Decimal: &#x2702;</p>
<p>Black Scissors using HTML Code: &#9986;</p>
<p id="point">Black Scissors using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2702 is widely supported in modern browsers; hand glyph artwork varies by typeface:

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

👀 Live Preview

See the glyph at different sizes and beside the white scissors variant (font-dependent):

Large glyph
Cut / copy UI ✂ Cut  |  Trim selection
Scissors pair (U+2702 & U+2704) ✂ ✄
Caption U+2702 is BLACK SCISSORS; U+2704 is WHITE SCISSORS in Dingbats.
Monospace refs &#x2702; &#9986; \2702

🧠 How It Works

1

Hexadecimal Code

&#x2702; references code point U+2702 using hex digits 2702 after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9986; is the decimal equivalent (9986) for the same Black Scissors character.

HTML markup
3

CSS Entity

\2702 is the CSS escape for U+2702, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+2702.

Use Cases

The Black Scissors (✂) is commonly used for:

✂ Cut/copy icons

Toolbar buttons, edit menus, and clipboard actions in applications.

🎨 Design projects

Design tools, image editors, and creative software interfaces.

✂ Creative works

Crafting, scrapbooking, fashion design, and DIY content.

📋 Office tools

Document editing, trimming, and office supply themes.

✂ Crafting themes

Sewing, paper crafts, and maker or workshop content.

💬 Social & messaging

Posts about cutting, editing, trimming, or creative projects.

♿ Accessibility

Pair ✂ with text or ARIA when used for decorative or thematic markers.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+2702
  • Pair ✂ with ✄ (white scissors) for black/white Dingbats pairs in UI or docs
  • Append U+FE0F (&#xFE0F;) when you want emoji-style ✂️ where supported
  • Scale with font-size for headers, icons, or subtle accents
  • Choose fonts that support the Dingbats block (U+2700–U+27BF)
  • Use \2702 only inside CSS content, not inside HTML text nodes
  • Add aria-hidden="true" when purely decorative, or text for meaningful markers

Don’t

  • Confuse U+2702 with U+2704 (white scissors) or emoji ✂️ (may use different sequences)
  • Rely on ✂ alone to communicate meaning in critical UI
  • Assume every font renders Dingbats crisply at small sizes
  • Use decorative glyphs as the only cue for important actions
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x2702; &#9986;
2

CSS content escape

\2702
3

U+2702 is BLACK SCISSORS; pairs with White Scissors U+2704

4

Dingbats block U+2700–U+27BF; no named HTML entity

5

Pair ornamental glyphs with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x2702; (hex), &#9986; (decimal), or \2702 in CSS content. There is no named entity; all valid methods render ✂.
U+2702 (hex 2702, decimal 9986). Dingbats (U+2700–U+27BF). Unicode name BLACK SCISSORS.
For cut/copy icons, design tools, creative projects, office tools, crafting themes, and editing or trimming actions.
Numeric references belong in HTML. The \2702 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2702;, &#9986;, or \2702 in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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