No Entry Sign

๐Ÿšซ

Shortcodes

Copy useful codes for no entry sign ๐Ÿšซ to use in websites, apps, blogs, and docs.

Unicode
U+1F6AB
HTML Code
🚫
HEX Code
🚫
CSS Code
\1F6AB
JS/JSON
\u1F6AB
Unix/C/PHP/JAVA
0x1F6AB
URL-encode
%F0%9F%9A%AB

Customize No Entry Sign

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

๐Ÿšซ
  

How to use No Entry Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿšซ</span>
HTML Code:
<span>&#128683;</span>
HEX Code:
<span>&#x1F6AB;</span>

Add with CSS

.no-entry-sign::before {
  content: '\\1F6AB';
}

Set it in JavaScript

document.querySelector('.no-entry-sign').textContent = '๐Ÿšซ';
copied