Black Square Button

๐Ÿ”ฒ

Shortcodes

Copy useful codes for black square button symbol ๐Ÿ”ฒ to use in websites, apps, blogs, and docs.

Unicode
U+1F532
HTML Code
🔲
HEX Code
🔲
CSS Code
\1F532
JS/JSON
\u1F532
Unix/C/PHP/JAVA
0x1F532
URL-encode
%F0%9F%94%B2

Customize Black Square Button

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

๐Ÿ”ฒ
  

How to use Black Square Button Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”ฒ</span>
HTML Code:
<span>&#128306;</span>
HEX Code:
<span>&#x1F532;</span>

Add with CSS

.black-square-button::before {
  content: '\\1F532';
}

Set it in JavaScript

document.querySelector('.black-square-button').textContent = '๐Ÿ”ฒ';
copied