Slope

Shortcodes

Copy and paste codes for Slope symbol ⌳ to use in your websites, apps, blogs, and more.

Unicode
U+2333
HTML Code
⌳
HEX Code
⌳
CSS Code
\2333
JS/JSON
\u2333
Unix/C/PHP/JAVA
0x2333
URL-encode
%E2%8C%B3
copied

Customize Slope Symbol

Customize ⌳ symbol as you like and download Slope as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Slope symbol in HTML, CSS, and JS?

Insert ⌳ Slope using HTML

1. Copy-paste Slope directly:
<span>⌳</span>
2. HTML Decimal Code:
<span>&#9011;</span>
3. Hexadecimal Code:
<span>&#x2333;</span>
Preview:

Add Slope symbol with CSS

.slope::before {
    content: '\\2333';
}
Preview: Slope

Slope JavaScript Code

1. Direct Symbol:
document.querySelector('.slope').textContent = '⌳';
2. Unicode Escape for ⌳:
document.querySelector('.slope').textContent = '\u2333';
Preview: