First Place Medal

๐Ÿฅ‡

Shortcodes

Copy useful codes for first place medal symbol ๐Ÿฅ‡ to use in websites, apps, blogs, and docs.

Unicode
U+1F947
HTML Code
🥇
HEX Code
🥇
CSS Code
\1F947
JS/JSON
\u1F947
Unix/C/PHP/JAVA
0x1F947
URL-encode
%F0%9F%A5%87

Customize First Place Medal

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

๐Ÿฅ‡
  

How to use First Place Medal Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅ‡</span>
HTML Code:
<span>&#129351;</span>
HEX Code:
<span>&#x1F947;</span>

Add with CSS

.first-place-medal::before {
  content: '\\1F947';
}

Set it in JavaScript

document.querySelector('.first-place-medal').textContent = '๐Ÿฅ‡';
copied