South West Arrow And North West Arrow

Shortcodes

Copy useful codes for south west arrow and north west arrow symbol ⤪ to use in websites, apps, blogs, and docs.

Unicode
U+292A
HTML Code
⤪
HEX Code
⤪
CSS Code
\292A
JS/JSON
\u292A
Unix/C/PHP/JAVA
0x292A
URL-encode
%E2%A4%AA

Customize South West Arrow And North West Arrow

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

  

How to use South West Arrow And North West Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤪</span>
HTML Code:
<span>&#10538;</span>
HEX Code:
<span>&#x292A;</span>

Add with CSS

.south-west-arrow-and-north-west-arrow::before {
  content: '\\292A';
}

Set it in JavaScript

document.querySelector('.south-west-arrow-and-north-west-arrow').textContent = '⤪';
copied