South East Arrow To Corner

Shortcodes

Copy useful codes for south east arrow to corner symbol ⇲ to use in websites, apps, blogs, and docs.

Unicode
U+21F2
HTML Code
⇲
HEX Code
⇲
CSS Code
\21F2
JS/JSON
\u21F2
Unix/C/PHP/JAVA
0x21F2
URL-encode
%E2%87%B2

Customize South East Arrow To Corner

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

  

How to use South East Arrow To Corner Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇲</span>
HTML Code:
<span>&#8690;</span>
HEX Code:
<span>&#x21F2;</span>

Add with CSS

.south-east-arrow-to-corner::before {
  content: '\\21F2';
}

Set it in JavaScript

document.querySelector('.south-east-arrow-to-corner').textContent = '⇲';
copied