Downwards Arrow To Bar

Shortcodes

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

Unicode
U+2913
HTML Code
⤓
HEX Code
⤓
CSS Code
\2913
JS/JSON
\u2913
Unix/C/PHP/JAVA
0x2913
URL-encode
%E2%A4%93
copied

Customize Downwards Arrow To Bar Symbol

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

Insert ⤓ Downwards Arrow To Bar using HTML

1. Copy-paste Downwards Arrow To Bar directly:
<span>⤓</span>
2. HTML Decimal Code:
<span>&#10515;</span>
3. Hexadecimal Code:
<span>&#x2913;</span>
Preview:

Add Downwards Arrow To Bar symbol with CSS

.downwards-arrow-to-bar::before {
    content: '\\2913';
}
Preview: Downwards Arrow To Bar

Downwards Arrow To Bar JavaScript Code

1. Direct Symbol:
document.querySelector('.downwards-arrow-to-bar').textContent = '⤓';
2. Unicode Escape for ⤓:
document.querySelector('.downwards-arrow-to-bar').textContent = '\u2913';
Preview: