Long Rightwards Squiggle Arrow

Shortcodes

Copy useful codes for long rightwards squiggle arrow symbol ⟿ to use in websites, apps, blogs, and docs.

Unicode
U+27FF
HTML Code
⟿
HEX Code
⟿
CSS Code
\27FF
JS/JSON
\u27FF
Unix/C/PHP/JAVA
0x27FF
URL-encode
%E2%9F%BF

Customize Long Rightwards Squiggle Arrow

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

  

How to use Long Rightwards Squiggle Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟿</span>
HTML Code:
<span>&#10239;</span>
HEX Code:
<span>&#x27FF;</span>

Add with CSS

.long-rightwards-squiggle-arrow::before {
  content: '\\27FF';
}

Set it in JavaScript

document.querySelector('.long-rightwards-squiggle-arrow').textContent = '⟿';
copied