Negative Squared Cross Mark

Shortcodes

Copy useful codes for negative squared cross mark symbol ❎ to use in websites, apps, blogs, and docs.

Unicode
U+274E
HTML Code
❎
HEX Code
❎
CSS Code
\274E
JS/JSON
\u274E
Unix/C/PHP/JAVA
0x274E
URL-encode
%E2%9D%8E

Customize Negative Squared Cross Mark

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

  

How to use Negative Squared Cross Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❎</span>
HTML Code:
<span>&#10062;</span>
HEX Code:
<span>&#x274E;</span>

Add with CSS

.negative-squared-cross-mark::before {
  content: '\\274E';
}

Set it in JavaScript

document.querySelector('.negative-squared-cross-mark').textContent = '❎';
copied