Ferry

Shortcodes

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

Unicode
U+26F4
HTML Code
⛴
HEX Code
⛴
CSS Code
\26F4
JS/JSON
\u26F4
Unix/C/PHP/JAVA
0x26F4
URL-encode
%E2%9B%B4
copied

Customize Ferry Symbol

Customize ⛴ symbol as you like and download Ferry 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 Ferry symbol in HTML, CSS, and JS?

Insert ⛴ Ferry using HTML

1. Copy-paste Ferry directly:
<span>⛴</span>
2. HTML Decimal Code:
<span>&#9972;</span>
3. Hexadecimal Code:
<span>&#x26F4;</span>
Preview:

Add Ferry symbol with CSS

.ferry::before {
    content: '\\26F4';
}
Preview: Ferry

Ferry JavaScript Code

1. Direct Symbol:
document.querySelector('.ferry').textContent = '⛴';
2. Unicode Escape for ⛴:
document.querySelector('.ferry').textContent = '\u26F4';
Preview: