HTML Entity for Squat Black Right Arrow (➧)

What You'll Learn
How to display the Squat Black Right Arrow (➧) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27A7 (BLACK RIGHT-POINTING SQUAT ARROW) in the Dingbats block (U+2700–U+27BF)—a compact right-pointing arrow for navigation and UI design.
Render it with ➧, ➧, or CSS \27A7. There is no named HTML entity. Do not confuse ➧ with simple right arrow → (→, U+2192).
⚡ Quick Reference — Squat Black Right Arrow
U+27A7Dingbats
➧Hexadecimal reference
➧Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+27A7
Hex code ➧
HTML code ➧
Named entity (none)
CSS code \27A7
Meaning Black right-pointing squat arrow
Not the same U+2192 = right arrow (→, →)
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing ➧ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\27A7";
}
</style>
</head>
<body>
<p>Next ➧</p>
<p>Continue ➧</p>
<p id="point">More </p>
</body>
</html>🌐 Browser Support
Squat Black Right Arrow (➧) renders in modern browsers when fonts include Dingbats glyphs:
👀 Live Preview
See the squat black right arrow in navigation contexts:
🧠 How It Works
Hexadecimal Code
➧ references code point U+27A7 using hex digits 27A7.
Decimal HTML Code
➧ is the decimal equivalent (10151) for the same character.
CSS Entity
\27A7 is the CSS escape for U+27A7, used in the content property of pseudo-elements.
Same visual result
All three methods produce ➧. Unicode U+27A7 in Dingbats (U+2700–U+27BF). No named entity.
Use Cases
Squat Black Right Arrow (➧) commonly appears in:
Menus, breadcrumbs, and next-page indicators.
Buttons, links, and interactive elements with forward direction.
Dashboards and modern interfaces needing compact arrows.
Forms, wizards, and guided processes with next-step cues.
Responsive designs that need space-efficient arrow symbols.
Graphic layouts and creative content with directional arrows.
💡 Best Practices
Do
- Use
➧or➧in HTML markup - Pair with clear link text like “Next” or “Continue” for accessibility
- Use CSS
::afterwith\27A7for decorative arrow suffixes - Pick hex or decimal style and stay consistent per project
- Test rendering across browsers and font stacks
Don’t
- Use padded Unicode notation like U+027A7—the correct value is
U+27A7 - Use CSS
\027A7with a leading zero—prefer\27A7 - Confuse ➧ with right arrow → (
→, U+2192) - Rely on the arrow alone without accessible text for screen readers
- Put CSS escape
\27A7in HTML text nodes
Key Takeaways
Three ways to render U+27A7 in HTML and CSS
➧ ➧For CSS stylesheets, use \27A7 in the content property
U+27A7 — BLACK RIGHT-POINTING SQUAT ARROW (➧)
No named entity—use numeric references or CSS escape
Previous: Squared Times Next: Staff Aesculapius
❓ Frequently Asked Questions
➧ (hex), ➧ (decimal), or \27A7 in CSS content. There is no named HTML entity. All three render ➧.U+27A7 (BLACK RIGHT-POINTING SQUAT ARROW). Dingbats (U+2700–U+27BF). Hex 27A7, decimal 10151.➧ or ➧) go in markup. The CSS escape \27A7 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
