Ringed Planet

๐Ÿช

Shortcodes

Copy useful codes for ringed planet symbol ๐Ÿช to use in websites, apps, blogs, and docs.

Unicode
U+1FA90
HTML Code
🪐
HEX Code
🪐
CSS Code
\1FA90
JS/JSON
\u1FA90
Unix/C/PHP/JAVA
0x1FA90
URL-encode
%F0%9F%AA%90

Customize Ringed Planet

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

๐Ÿช
  

How to use Ringed Planet Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿช</span>
HTML Code:
<span>&#129680;</span>
HEX Code:
<span>&#x1FA90;</span>

Add with CSS

.ringed-planet::before {
  content: '\\1FA90';
}

Set it in JavaScript

document.querySelector('.ringed-planet').textContent = '๐Ÿช';
copied