Place Of Interest Sign

Shortcodes

Copy useful codes for place of interest sign ⌘ to use in websites, apps, blogs, and docs.

Unicode
U+2318
HTML Code
⌘
HEX Code
⌘
CSS Code
\2318
JS/JSON
\u2318
Unix/C/PHP/JAVA
0x2318
URL-encode
%E2%8C%98

Customize Place Of Interest Sign

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

  

How to use Place Of Interest Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌘</span>
HTML Code:
<span>&#8984;</span>
HEX Code:
<span>&#x2318;</span>

Add with CSS

.place-of-interest-sign::before {
  content: '\\2318';
}

Set it in JavaScript

document.querySelector('.place-of-interest-sign').textContent = '⌘';
copied