Tag Exclamation Mark

󠀡

Shortcodes

Copy useful codes for tag exclamation mark symbol 󠀡 to use in websites, apps, blogs, and docs.

Unicode
U+E0021
HTML Code
󠀡
HEX Code
󠀡
CSS Code
\E0021
JS/JSON
\uE0021
Unix/C/PHP/JAVA
0xE0021
URL-encode
%F3%A0%80%A1

Customize Tag Exclamation Mark

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

󠀡
  

How to use Tag Exclamation Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>󠀡</span>
HTML Code:
<span>&#917537;</span>
HEX Code:
<span>&#xE0021;</span>

Add with CSS

.tag-exclamation-mark::before {
  content: '\\E0021';
}

Set it in JavaScript

document.querySelector('.tag-exclamation-mark').textContent = '󠀡';
copied