HTML Entity for Right Arrow From Bar To Black Diamond (⤠)

What You'll Learn
How to display the Right Arrow From Bar To Black Diamond (⤠) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2920 (RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightward arrow starting from a vertical bar and ending at a filled black diamond.
Render it with ⤠ (named), ⤠, ⤠, or CSS \2920. Related: U+21A6 (↦, right arrow from bar), U+291E (⤞, right arrow to black diamond / ⤞). Do not confuse ⤠ with plain right arrow → or maps-to ↦.
⚡ Quick Reference — Right Arrow From Bar To Black Diamond
U+2920Supplemental Arrows-B (U+2900–U+297F)
⤠Hexadecimal reference
⤠Decimal reference
⤠Standard HTML entity
Name Value
──────────── ──────────
Unicode U+2920
Hex code ⤠
HTML code ⤠
Named entity ⤠
CSS code \2920
Meaning Rightwards arrow from bar to black diamond
Related U+21A6 = right arrow from bar (↦)
U+291E = right arrow to black diamond (⤞, ⤞)
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing ⤠ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2920";
}
</style>
</head>
<body>
<p>Hex: ⤠</p>
<p>Decimal: ⤠</p>
<p>Named: ⤠</p>
<p id="point">CSS: </p>
</body>
</html>🌐 Browser Support
U+2920 is widely supported in all modern browsers—it is part of the Supplemental Arrows-B block:
👀 Live Preview
See the Right Arrow From Bar To Black Diamond (⤠) in common contexts:
🧠 How It Works
Named HTML Entity
⤠ is the named entity for U+2920 (rightwards arrow from bar to black diamond). It is the most readable option in HTML source.
Hexadecimal Code
⤠ uses the Unicode hexadecimal value 2920.
Decimal HTML Code
⤠ uses the decimal Unicode value 10528 for the same character.
CSS Entity
\2920 is used in CSS stylesheets in the content property of pseudo-elements.
Same visual result
All four methods produce ⤠. Unicode U+2920 in the Supplemental Arrows-B block. Previous: Right Arrow From Bar (↦). Next: Right Arrow Headless Tail (⤚).
Use Cases
The Right Arrow From Bar To Black Diamond (⤠) is commonly used in:
Show direction from a starting bar to a black diamond endpoint in process maps.
Technical diagrams, system flows, and architecture visualizations.
Breadcrumbs, menus, and UI elements indicating direction to an endpoint.
Buttons, icons, and interactive elements with directional indicators.
Step-by-step guides, workflow documentation, and onboarding flows.
Pair ⤠ with plain language (e.g. “leads to”) for screen readers.
💡 Best Practices
Do
- Prefer
⤠in HTML for readable source markup - Use ⤠ in flowcharts and diagrams where bar-to-diamond direction matters
- Set
<meta charset="utf-8"> - Link to Right Arrow From Bar for the related ↦ symbol
- Keep one entity style consistent across your project
- Use CSS
\2920for decorative arrows in pseudo-elements
Don’t
- Confuse ⤠ (U+2920) with ↦ (U+21A6) or ⤞ (U+291E)
- Use padded Unicode notation like U+02920—the correct value is
U+2920 - Use CSS escape
\2920in HTML text nodes - Substitute ASCII
->when the specialized arrow ⤠ is intended - Assume all fonts render Supplemental Arrows-B glyphs correctly
Key Takeaways
Four ways to render U+2920 in HTML and CSS
⤠ ⤠ ⤠For CSS, use \2920 in the content property
Unicode U+2920 — RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND (⤠)
Distinct from ↦, ⤞, and plain right arrow →
Previous: Right Arrow From Bar (↦) Next: Right Arrow Headless Tail (⤚)
❓ Frequently Asked Questions
⤠ (named), ⤠ (hex), ⤠ (decimal), or \2920 in CSS content. All four render ⤠.U+2920 (RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND). Supplemental Arrows-B block (U+2900–U+297F). Hex 2920, decimal 10528.⤠, ⤠, ⤠) go in markup. The CSS escape \2920 is used in stylesheets, typically on ::before or ::after. Both render ⤠.⤠ is the standard named HTML entity for U+2920. You can also use ⤠ (decimal) or ⤠ (hex) and \2920 in CSS—all equivalent in modern browsers.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
