Hundred Points Symbol

๐Ÿ’ฏ

Shortcodes

Copy useful codes for hundred points symbol ๐Ÿ’ฏ to use in websites, apps, blogs, and docs.

Unicode
U+1F4AF
HTML Code
💯
HEX Code
💯
CSS Code
\1F4AF
JS/JSON
\u1F4AF
Unix/C/PHP/JAVA
0x1F4AF
URL-encode
%F0%9F%92%AF

Customize Hundred Points Symbol

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

๐Ÿ’ฏ
  

How to use Hundred Points Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ’ฏ</span>
HTML Code:
<span>&#128175;</span>
HEX Code:
<span>&#x1F4AF;</span>

Add with CSS

.hundred-points-symbol::before {
  content: '\\1F4AF';
}

Set it in JavaScript

document.querySelector('.hundred-points-symbol').textContent = '๐Ÿ’ฏ';
copied