HTML Entity for Left Arrow Black Diamond (⤝)

What You'll Learn
How to display the Left Arrow Black Diamond (⤝) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+291D (LEFTWARDS ARROW TO BLACK DIAMOND) in the Supplemental Arrows-B block (U+2900–U+297F)—a leftwards arrow pointing to a black diamond, used in navigation icons, UI design, and technical or diagrammatic content.
Render it with ⤝ (named), ⤝, ⤝, or CSS \291D. Related: U+291F (⤟, left arrow bar black diamond / ⤟), U+291E (⤞, right arrow to black diamond / ⤞).
⚡ Quick Reference — Left Arrow Black Diamond
U+291DSupplemental Arrows-B
⤝Hexadecimal reference
⤝Decimal reference
⤝Most readable option
Name Value
──────────── ──────────
Unicode U+291D
Hex code ⤝
HTML code ⤝
Named entity ⤝
CSS code \291D
Meaning Leftwards arrow to black diamond
Related U+291F = left arrow bar black diamond (⤟)
U+291E = right arrow to black diamond (⤞)Complete HTML Example
A simple example showing the Left Arrow Black Diamond (⤝) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\291D";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⤝</p>
<p>Symbol using HTML Code: ⤝</p>
<p>Symbol using HTML Entity: ⤝</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Arrow Black Diamond (⤝) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Arrow Black Diamond (⤝) in navigation and UI contexts:
🧠 How It Works
Named HTML Entity
⤝ is the named entity for the Left Arrow Black Diamond (leftwards arrow to black diamond). It is easy to read in navigation and UI markup.
Hexadecimal Code
⤝ uses the Unicode hexadecimal value 291D. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤝ uses the decimal Unicode value 10525 for the same symbol.
CSS Entity
\291D is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤝. Unicode U+291D is in Supplemental Arrows-B. Next: Left Arrow Double Vertical Stroke.
Use Cases
The Left Arrow Black Diamond (⤝) is commonly used in:
Back, return, or left-direction controls in app headers, toolbars, and menus.
Distinct arrow-to-diamond styling in buttons, badges, or UI elements.
Flow, shortcuts, or specification notation using this symbol.
Key labels or shortcut hints where a left-arrow-to-black-diamond is required.
Direction or special transition type in process and state diagrams.
Custom navigation or action icons using Supplemental Arrows-B symbols.
💡 Best Practices
Do
- Prefer
⤝in HTML for readable source markup - Pair the symbol with text (e.g. “⤝ Back”) or use
aria-label - Use fonts that support Supplemental Arrows-B (U+291D)
- Set
<meta charset="utf-8"> - Keep one entity style consistent across your project
- Test glyph rendering across browsers and fonts
Don’t
- Use the symbol alone without context for interactive controls
- Confuse ⤝ with ⤟ (bar black diamond) or ⤞ (right to black diamond)
- Mix entity styles randomly in one file
- Use CSS
\291Dinside HTML text nodes - Assume legacy systems render U+291D without testing
Key Takeaways
Four ways to render U+291D in HTML and CSS
⤝ ⤝ ⤝For CSS, use \291D in the content property
Unicode U+291D — LEFTWARDS ARROW TO BLACK DIAMOND
Supplemental Arrows-B block (U+2900–U+297F)
Previous: Left Arrow Bar Black Diamond (⤟) Next: Left Arrow Double Vertical Stroke
❓ Frequently Asked Questions
⤝ (named), ⤝ (hex), ⤝ (decimal), or \291D in CSS content. All four methods render ⤝.U+291D (LEFTWARDS ARROW TO BLACK DIAMOND). Supplemental Arrows-B block (U+2900–U+297F). Hex 291D, decimal 10525.⤝, ⤝, ⤝) go in markup. The CSS escape \291D is used in stylesheets, typically on ::before or ::after. Both render ⤝.⤝ is the named HTML entity for U+291D. You can also use ⤝ (decimal) or ⤝ (hex) and \291D in CSS—all equivalent in modern browsers.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, navigation icons, and more.
8 people found this page helpful
