Satellite

๐Ÿ›ฐ

Shortcodes

Copy useful codes for satellite symbol ๐Ÿ›ฐ to use in websites, apps, blogs, and docs.

Unicode
U+1F6F0
HTML Code
🛰
HEX Code
🛰
CSS Code
\1F6F0
JS/JSON
\u1F6F0
Unix/C/PHP/JAVA
0x1F6F0
URL-encode
%F0%9F%9B%B0

Customize Satellite

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

๐Ÿ›ฐ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ›ฐ</span>
HTML Code:
<span>&#128752;</span>
HEX Code:
<span>&#x1F6F0;</span>

Add with CSS

.satellite::before {
  content: '\\1F6F0';
}

Set it in JavaScript

document.querySelector('.satellite').textContent = '๐Ÿ›ฐ';
copied