South West Arrow

Shortcodes

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

Unicode
U+2199
HTML Code
↙
HEX Code
↙
CSS Code
\2199
JS/JSON
\u2199
Unix/C/PHP/JAVA
0x2199
URL-encode
%E2%86%99

Customize South West Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>↙</span>
HTML Code:
<span>&#8601;</span>
HEX Code:
<span>&#x2199;</span>

Add with CSS

.south-west-arrow::before {
  content: '\\2199';
}

Set it in JavaScript

document.querySelector('.south-west-arrow').textContent = '↙';
copied