Aerial Tramway

๐Ÿšก

Shortcodes

Copy useful codes for aerial tramway symbol ๐Ÿšก to use in websites, apps, blogs, and docs.

Unicode
U+1F6A1
HTML Code
🚡
HEX Code
🚡
CSS Code
\1F6A1
JS/JSON
\u1F6A1
Unix/C/PHP/JAVA
0x1F6A1
URL-encode
%F0%9F%9A%A1

Customize Aerial Tramway

Customize ๐Ÿšก, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿšก
  

How to use Aerial Tramway Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿšก</span>
HTML Code:
<span>&#128673;</span>
HEX Code:
<span>&#x1F6A1;</span>

Add with CSS

.aerial-tramway::before {
  content: '\\1F6A1';
}

Set it in JavaScript

document.querySelector('.aerial-tramway').textContent = '๐Ÿšก';
copied