Pushpin

๐Ÿ“Œ

Shortcodes

Copy useful codes for pushpin symbol ๐Ÿ“Œ to use in websites, apps, blogs, and docs.

Unicode
U+1F4CC
HTML Code
📌
HEX Code
📌
CSS Code
\1F4CC
JS/JSON
\u1F4CC
Unix/C/PHP/JAVA
0x1F4CC
URL-encode
%F0%9F%93%8C

Customize Pushpin

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

๐Ÿ“Œ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ“Œ</span>
HTML Code:
<span>&#128204;</span>
HEX Code:
<span>&#x1F4CC;</span>

Add with CSS

.pushpin::before {
  content: '\\1F4CC';
}

Set it in JavaScript

document.querySelector('.pushpin').textContent = '๐Ÿ“Œ';
copied