Softball

๐ŸฅŽ

Shortcodes

Copy useful codes for softball symbol ๐ŸฅŽ to use in websites, apps, blogs, and docs.

Unicode
U+1F94E
HTML Code
🥎
HEX Code
🥎
CSS Code
\1F94E
JS/JSON
\u1F94E
Unix/C/PHP/JAVA
0x1F94E
URL-encode
%F0%9F%A5%8E

Customize Softball

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

๐ŸฅŽ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ŸฅŽ</span>
HTML Code:
<span>&#129358;</span>
HEX Code:
<span>&#x1F94E;</span>

Add with CSS

.softball::before {
  content: '\\1F94E';
}

Set it in JavaScript

document.querySelector('.softball').textContent = '๐ŸฅŽ';
copied