Negative Squared Cross Mark

Shortcodes

Copy and paste codes for Negative Squared Cross Mark symbol ❎ to use in your websites, apps, blogs, and more.

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

Customize Negative Squared Cross Mark Symbol

Customize ❎ symbol as you like and download Negative Squared Cross Mark as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Negative Squared Cross Mark symbol in HTML, CSS, and JS?

Insert ❎ Negative Squared Cross Mark using HTML

1. Copy-paste Negative Squared Cross Mark directly:
<span>❎</span>
2. HTML Decimal Code:
<span>&#10062;</span>
3. Hexadecimal Code:
<span>&#x274E;</span>
Preview:

Add Negative Squared Cross Mark symbol with CSS

.negative-squared-cross-mark::before {
    content: '\\274E';
}
Preview: Negative Squared Cross Mark

Negative Squared Cross Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.negative-squared-cross-mark').textContent = '❎';
2. Unicode Escape for ❎:
document.querySelector('.negative-squared-cross-mark').textContent = '\u274E';
Preview: