Ferry

Shortcodes

Copy useful codes for ferry symbol ⛴ to use in websites, apps, blogs, and docs.

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

Customize Ferry

Customize ⛴, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Ferry Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⛴</span>
HTML Code:
<span>&#9972;</span>
HEX Code:
<span>&#x26F4;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.ferry').textContent = '⛴';
copied