Flying Disc

๐Ÿฅ

Shortcodes

Copy useful codes for flying disc symbol ๐Ÿฅ to use in websites, apps, blogs, and docs.

Unicode
U+1F94F
HTML Code
🥏
HEX Code
🥏
CSS Code
\1F94F
JS/JSON
\u1F94F
Unix/C/PHP/JAVA
0x1F94F
URL-encode
%F0%9F%A5%8F

Customize Flying Disc

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

๐Ÿฅ
  

How to use Flying Disc Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅ</span>
HTML Code:
<span>&#129359;</span>
HEX Code:
<span>&#x1F94F;</span>

Add with CSS

.flying-disc::before {
  content: '\\1F94F';
}

Set it in JavaScript

document.querySelector('.flying-disc').textContent = '๐Ÿฅ';
copied