HTML Entity for Lower Blade Scissors (✃)

What You'll Learn
How to display the Lower Blade Scissors (✃) in HTML using various entity methods. The Lower Blade Scissors is a Dingbats character used to represent cutting tools, crafts, and design elements and is useful for icons, labels, and decorative content.
This character is part of the Dingbats Unicode block and can be rendered with a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity for this symbol.
⚡ Quick Reference — Lower Blade Scissors Entity
U+2703Dingbats block
✃Hexadecimal reference
✃Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2703
Hex code ✃
HTML code ✃
Named entity (none)
CSS code \2703
Meaning Lower blade scissors
Related U+2701 upper blade, U+2702 black, U+2704 white
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing the Lower Blade Scissors (✃) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2703";
}
</style>
</head>
<body>
<p>Symbol (hex): ✃</p>
<p>Symbol (decimal): ✃</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Lower Blade Scissors (✃) is supported in modern browsers when the font includes Dingbats glyphs:
👀 Live Preview
See the Lower Blade Scissors (✃) in UI and content contexts:
🧠 How It Works
Hexadecimal Code
✃ uses the Unicode hexadecimal value 2703 to display the Lower Blade Scissors. The x prefix indicates hexadecimal format.
Decimal HTML Code
✃ uses the decimal Unicode value 9987 to display the same character. This is one of the most commonly used methods.
CSS Entity
\2703 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+2703 sits in Dingbats (U+2700–U+27BF). Related scissors: U+2701 (upper blade), U+2702 (black ✂), U+2704 (white). There is no named HTML entity.
Use Cases
The Lower Blade Scissors (✃) is commonly used in:
Represent cutting tools, craft instructions, and DIY or hobby content.
Use in graphic design, logos, and typographic layouts as a decorative or functional symbol.
Indicate cut, trim, or delete actions in toolbars, menus, and buttons.
Show cutting or tailoring steps in fashion, pattern, and sewing content.
Mark open-here or cut-here instructions on labels and packaging graphics.
Teach about tools, safety, or steps that involve cutting in tutorials and guides.
Use as a bullet or marker in lists related to crafts, editing, or trimming tasks.
💡 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 (lower blade, black, white, upper blade)
- Verify Dingbats glyph support in your target fonts and devices
- Use
\2703in CSScontentwhen inserting via pseudo-elements
Don’t
- Use ✃ as the only cue for a destructive action without confirmation
- Confuse ✃ (U+2703) with ✂ (black scissors U+2702)
- Put CSS escape
\2703in HTML text nodes - Expect a named HTML entity—only numeric codes work for ✃
- Rely on the glyph alone when context is unclear (add “Cut here” text)
Key Takeaways
Three references render ✃ (no named entity)
✃ ✃For CSS stylesheets, use the escape in the content property
\2703Unicode U+2703 — LOWER BLADE SCISSORS (Dingbats)
One of several scissors symbols alongside U+2701, U+2702, and U+2704
Previous: Low Line (̲) Next: Lower Left Semicircular Anticlockwise Arrow
❓ Frequently Asked Questions
✃ (hex), ✃ (decimal), or \2703 in CSS content. All produce ✃. There is no named HTML entity.U+2703 (LOWER BLADE SCISSORS). Dingbats block. Hex 2703, decimal 9987. Related symbols include Upper Blade Scissors U+2701, Black Scissors U+2702 (✂), and White Scissors U+2704.✃ or ✃) is used in HTML content. The CSS entity (\2703) 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
