Footprints

๐Ÿ‘ฃ

Shortcodes

Copy useful codes for footprints symbol ๐Ÿ‘ฃ to use in websites, apps, blogs, and docs.

Unicode
U+1F463
HTML Code
👣
HEX Code
👣
CSS Code
\1F463
JS/JSON
\u1F463
Unix/C/PHP/JAVA
0x1F463
URL-encode
%F0%9F%91%A3

Customize Footprints

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

๐Ÿ‘ฃ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ‘ฃ</span>
HTML Code:
<span>&#128099;</span>
HEX Code:
<span>&#x1F463;</span>

Add with CSS

.footprints::before {
  content: '\\1F463';
}

Set it in JavaScript

document.querySelector('.footprints').textContent = '๐Ÿ‘ฃ';
copied