Rightwards Arrow Through X

Shortcodes

Copy and paste codes for Rightwards Arrow Through X symbol ⥇ to use in your websites, apps, blogs, and more.

Unicode
U+2947
HTML Code
⥇
HEX Code
⥇
CSS Code
\2947
JS/JSON
\u2947
Unix/C/PHP/JAVA
0x2947
URL-encode
%E2%A5%87
copied

Customize Rightwards Arrow Through X Symbol

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

Insert ⥇ Rightwards Arrow Through X using HTML

1. Copy-paste Rightwards Arrow Through X directly:
<span>⥇</span>
2. HTML Decimal Code:
<span>&#10567;</span>
3. Hexadecimal Code:
<span>&#x2947;</span>
Preview:

Add Rightwards Arrow Through X symbol with CSS

.rightwards-arrow-through-x::before {
    content: '\\2947';
}
Preview: Rightwards Arrow Through X

Rightwards Arrow Through X JavaScript Code

1. Direct Symbol:
document.querySelector('.rightwards-arrow-through-x').textContent = '⥇';
2. Unicode Escape for ⥇:
document.querySelector('.rightwards-arrow-through-x').textContent = '\u2947';
Preview: