Right Angle With Downwards Zigzag Arrow

Shortcodes

Copy useful codes for right angle with downwards zigzag arrow symbol ⍼ to use in websites, apps, blogs, and docs.

Unicode
U+237C
HTML Code
⍼
HEX Code
⍼
CSS Code
\237C
JS/JSON
\u237C
Unix/C/PHP/JAVA
0x237C
URL-encode
%E2%8D%BC

Customize Right Angle With Downwards Zigzag Arrow

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

  

How to use Right Angle With Downwards Zigzag Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⍼</span>
HTML Code:
<span>&#9084;</span>
HEX Code:
<span>&#x237C;</span>

Add with CSS

.right-angle-with-downwards-zigzag-arrow::before {
  content: '\\237C';
}

Set it in JavaScript

document.querySelector('.right-angle-with-downwards-zigzag-arrow').textContent = '⍼';
copied