Rightwards Arrow Through Greater-than

Shortcodes

Copy and paste codes for Rightwards Arrow Through Greater-than symbol ⭃ to use in your websites, apps, blogs, and more.

Unicode
U+2B43
HTML Code
⭃
HEX Code
⭃
CSS Code
\2B43
JS/JSON
\u2B43
Unix/C/PHP/JAVA
0x2B43
URL-encode
%E2%AD%83
copied

Customize Rightwards Arrow Through Greater-than Symbol

Customize ⭃ symbol as you like and download Rightwards Arrow Through Greater-than 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 Rightwards Arrow Through Greater-than symbol in HTML, CSS, and JS?

Insert ⭃ Rightwards Arrow Through Greater-than using HTML

1. Copy-paste Rightwards Arrow Through Greater-than directly:
<span>⭃</span>
2. HTML Decimal Code:
<span>&#11075;</span>
3. Hexadecimal Code:
<span>&#x2B43;</span>
Preview:

Add Rightwards Arrow Through Greater-than symbol with CSS

.rightwards-arrow-through-greater-than::before {
    content: '\\2B43';
}
Preview: Rightwards Arrow Through Greater-than

Rightwards Arrow Through Greater-than JavaScript Code

1. Direct Symbol:
document.querySelector('.rightwards-arrow-through-greater-than').textContent = '⭃';
2. Unicode Escape for ⭃:
document.querySelector('.rightwards-arrow-through-greater-than').textContent = '\u2B43';
Preview: