HTML Entity for Upper Blade Scissors (✁)

What You'll Learn
How to display the Upper Blade Scissors (✁) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2701 (UPPER BLADE SCISSORS) in the Dingbats block (U+2700–U+27BF)—a scissors icon with the upper blade visible, used for design tools, technical documentation, cut/copy interfaces, and decorative content.
Render it with ✁, ✁, or CSS escape \2701. There is no named HTML entity. Compare ✂ (Black Scissors, U+2702) and ✃ (Lower Blade Scissors, U+2703) for related Dingbats scissors variants.
⚡ Quick Reference — Upper Blade Scissors
U+2701Dingbats block
✁Hexadecimal reference
✁Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2701
Hex code ✁
HTML code ✁
Named entity (none)
CSS code \2701
Official name UPPER BLADE SCISSORS
Related U+2702 = Black scissors; U+2703 = Lower blade; U+2704 = White scissors
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing the Upper Blade Scissors (✁) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2701";
}
</style>
</head>
<body>
<p>Upper Blade Scissors (hex): ✁</p>
<p>Upper Blade Scissors (decimal): ✁</p>
<p id="point">Upper Blade Scissors (CSS): </p>
</body>
</html>🌐 Browser Support
The Upper Blade Scissors (✁) is supported in modern browsers when the font includes Dingbats glyphs:
👀 Live Preview
See the Upper Blade Scissors (✁) in UI and content contexts:
🧠 How It Works
Hexadecimal Code
✁ uses the Unicode hexadecimal value 2701 to display the Upper Blade Scissors. The x prefix indicates hexadecimal format.
Decimal HTML Code
✁ uses the decimal Unicode value 9985 to display the same character. This is one of the most commonly used methods.
CSS Entity
\2701 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ✁. Unicode U+2701 sits in Dingbats (U+2700–U+27BF). Related scissors: U+2702 (black ✂), U+2703 (lower blade), U+2704 (white). There is no named HTML entity.
Use Cases
The Upper Blade Scissors (✁) is commonly used in:
Graphic design interfaces, creative software, and cut/trim tool indicators.
User manuals and instructional content referencing cutting or editing operations.
Cut, trim, or edit buttons in toolbars, menus, and symbol-based interfaces.
Applications and websites with cut, copy, and paste functionality.
Logos, creative portfolios, and design showcases using scissors imagery.
Cut-here or open-here instructions on labels and shipping graphics.
💡 Best Practices
Do
- Pair ✁ with text or
aria-label(e.g. “Cut”) for accessibility - Use numeric references (
✁or✁) consistently in HTML - Pick the right scissors variant for your design (upper blade, black, lower blade, white)
- Verify Dingbats glyph support in your target fonts and devices
- Use
\2701in CSScontentwhen inserting via pseudo-elements
Don’t
- Use ✁ as the only cue for a destructive action without confirmation
- Confuse ✁ (U+2701) with ✂ (black scissors U+2702) or ✃ (lower blade U+2703)
- Put CSS escape
\2701in HTML text nodes - Expect a named HTML entity—only numeric codes work for ✁
- Rely on the glyph alone when context is unclear (add “Cut” text)
Key Takeaways
Three references render ✁ (no named entity)
✁ ✁For CSS stylesheets, use the escape in the content property
\2701Unicode U+2701 — UPPER BLADE SCISSORS (Dingbats)
One of several scissors symbols alongside U+2702, U+2703, and U+2704
Previous: Up White Arrow On Pedestal (⇫) Next: Upper Right Drop Shadowed White Square
❓ Frequently Asked Questions
✁ (hex), ✁ (decimal), or \2701 in CSS content. All produce ✁. There is no named HTML entity.U+2701 (UPPER BLADE SCISSORS). Dingbats block (U+2700–U+27BF). Hex 2701, decimal 9985. Related symbols include Black Scissors U+2702 (✂), Lower Blade Scissors U+2703, and White Scissors U+2704.✁ or ✁) is used in HTML content. The CSS entity (\2701) is used in CSS, e.g. in the content property of ::before or ::after. Both produce ✁ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — Dingbats, symbols, and more.
8 people found this page helpful
