Third Place Medal

🥉

Shortcodes

Copy useful codes for third place medal symbol 🥉 to use in websites, apps, blogs, and docs.

Unicode
U+1F949
HTML Code
🥉
HEX Code
🥉
CSS Code
\1F949
JS/JSON
\u1F949
Unix/C/PHP/JAVA
0x1F949
URL-encode
%F0%9F%A5%89

Customize Third Place Medal

Customize 🥉, download it as SVG or PNG, or copy the generated HTML snippet.

🥉
  

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

Insert in HTML

1. Direct symbol:
<span>🥉</span>
HTML Code:
<span>&#129353;</span>
HEX Code:
<span>&#x1F949;</span>

Add with CSS

.third-place-medal::before {
  content: '\\1F949';
}

Set it in JavaScript

document.querySelector('.third-place-medal').textContent = '🥉';
copied