HTML Entity for Wave Arrow Pointing Directly Right (⤳)

What You'll Learn
How to display the Wave Arrow Pointing Directly Right symbol (⤳) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2933 (WAVE ARROW POINTING DIRECTLY RIGHT) in the Supplemental Arrows-B block—a stylized right-pointing arrow with a wave pattern used in flowcharts, diagrams, and navigation UI.
Render it with ⤳, ⤳, the named entity ⤳, or CSS escape \2933. Do not confuse ⤳ with the simple right arrow → (U+2192, →).
⚡ Quick Reference — Wave Arrow Pointing Directly Right Entity
U+2933Supplemental Arrows-B
⤳Hexadecimal reference
⤳Decimal reference
⤳Most readable option
Name Value
──────────── ──────────
Unicode U+2933
Hex code ⤳
HTML code ⤳
Named entity ⤳
CSS code \2933
Meaning Wave arrow pointing directly right
Not the same U+2192 = → (rightwards arrow, →)
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing the Wave Arrow Pointing Directly Right symbol (⤳) using hexadecimal code, decimal HTML code, named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2933";
}
</style>
</head>
<body>
<p>Symbol (hex): ⤳</p>
<p>Symbol (decimal): ⤳</p>
<p>Symbol (named): ⤳</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Wave Arrow Pointing Directly Right symbol (⤳) is supported in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Wave Arrow Pointing Directly Right symbol rendered live:
→)🧠 How It Works
Hexadecimal Code
⤳ uses the Unicode hexadecimal value 2933 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤳ uses the decimal Unicode value 10547 to display the same character. A common method for arrow symbols.
Named Entity
⤳ is the semantic named entity—the easiest to read in source HTML for the wave arrow pointing directly right.
CSS Entity
\2933 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ⤳. Unicode U+2933 sits in Supplemental Arrows-B. Not the same as → (→).
Use Cases
The Wave Arrow Pointing Directly Right symbol (⤳) is commonly used in:
Process diagrams and workflow visualizations showing direction or flow.
System architecture and organizational charts with directional links.
Navigation interfaces, wayfinding, and directional indicators.
Landing pages and interactive interfaces with stylized arrow elements.
Button icons and interactive elements needing directional cues.
Menus, breadcrumbs, and site navigation indicating movement right.
Headers, footers, and design accents with arrow motifs.
💡 Best Practices
Do
- Use
⤳for readable source markup - Pair ⤳ with accessible text or
aria-labelin navigation - Pick one entity style per project for consistency
- Use fonts that support Supplemental Arrows-B
- Distinguish ⤳ from → (
→)
Don’t
- Confuse ⤳ (U+2933) with → (U+2192, simple right arrow)
- Use the symbol alone without context in critical navigation
- Mix entity styles randomly in one file
- Use CSS escape
\2933inside HTML markup - Assume all fonts render wave arrows identically
Key Takeaways
Type ⤳ directly, or use hex/decimal/named references
⤳ ⤳ ⤳For CSS stylesheets, use the escape in the content property
\2933Unicode U+2933 — WAVE ARROW POINTING DIRECTLY RIGHT
Not the same as → (→)
Previous: Warning Sign (⚠) Next: Wedge Tailed Right Arrow
❓ Frequently Asked Questions
⤳ (hex), ⤳ (decimal), ⤳ (named), or \2933 in CSS content. All produce ⤳. In UTF-8 you can also type ⤳ directly.U+2933 (WAVE ARROW POINTING DIRECTLY RIGHT). Supplemental Arrows-B block. Hex 2933, decimal 10547. Named entity ⤳. Related: U+2192 (→, →) is a simple right arrow.⤳, ⤳, or ⤳) go directly in markup. The CSS escape \2933 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.⤳ is the named HTML entity for ⤳ (U+2933). ⤳ and ⤳ are equivalent in modern browsers. Do not confuse ⤳ with → (→).Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
