Mountain Railway

๐Ÿšž

Shortcodes

Copy useful codes for mountain railway symbol ๐Ÿšž to use in websites, apps, blogs, and docs.

Unicode
U+1F69E
HTML Code
🚞
HEX Code
🚞
CSS Code
\1F69E
JS/JSON
\u1F69E
Unix/C/PHP/JAVA
0x1F69E
URL-encode
%F0%9F%9A%9E

Customize Mountain Railway

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

๐Ÿšž
  

How to use Mountain Railway Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿšž</span>
HTML Code:
<span>&#128670;</span>
HEX Code:
<span>&#x1F69E;</span>

Add with CSS

.mountain-railway::before {
  content: '\\1F69E';
}

Set it in JavaScript

document.querySelector('.mountain-railway').textContent = '๐Ÿšž';
copied