Rightwards Arrow To Bar

Shortcodes

Copy and paste codes for Rightwards Arrow To Bar symbol ⇥ to use in your websites, apps, blogs, and more.

Unicode
U+21E5
HTML Code
⇥
HEX Code
⇥
CSS Code
\21E5
JS/JSON
\u21E5
Unix/C/PHP/JAVA
0x21E5
URL-encode
%E2%87%A5
copied

Customize Rightwards Arrow To Bar Symbol

Customize ⇥ symbol as you like and download Rightwards Arrow To Bar 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 To Bar symbol in HTML, CSS, and JS?

Insert ⇥ Rightwards Arrow To Bar using HTML

1. Copy-paste Rightwards Arrow To Bar directly:
<span>⇥</span>
2. HTML Decimal Code:
<span>&#8677;</span>
3. Hexadecimal Code:
<span>&#x21E5;</span>
Preview:

Add Rightwards Arrow To Bar symbol with CSS

.rightwards-arrow-to-bar::before {
    content: '\\21E5';
}
Preview: Rightwards Arrow To Bar

Rightwards Arrow To Bar JavaScript Code

1. Direct Symbol:
document.querySelector('.rightwards-arrow-to-bar').textContent = '⇥';
2. Unicode Escape for ⇥:
document.querySelector('.rightwards-arrow-to-bar').textContent = '\u21E5';
Preview: