Wave Arrow Pointing Directly Right

Shortcodes

Copy useful codes for wave arrow pointing directly right symbol ⤳ to use in websites, apps, blogs, and docs.

Unicode
U+2933
HTML Code
⤳
HEX Code
⤳
CSS Code
\2933
JS/JSON
\u2933
Unix/C/PHP/JAVA
0x2933
URL-encode
%E2%A4%B3

Customize Wave Arrow Pointing Directly Right

Customize ⤳, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Wave Arrow Pointing Directly Right Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤳</span>
HTML Code:
<span>&#10547;</span>
HEX Code:
<span>&#x2933;</span>

Add with CSS

.wave-arrow-pointing-directly-right::before {
  content: '\\2933';
}

Set it in JavaScript

document.querySelector('.wave-arrow-pointing-directly-right').textContent = '⤳';
copied