Squared Four Dot Punctuation

Shortcodes

Copy useful codes for squared four dot punctuation symbol ⸬ to use in websites, apps, blogs, and docs.

Unicode
U+2E2C
HTML Code
⸬
HEX Code
⸬
CSS Code
\2E2C
JS/JSON
\u2E2C
Unix/C/PHP/JAVA
0x2E2C
URL-encode
%E2%B8%AC

Customize Squared Four Dot Punctuation

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

  

How to use Squared Four Dot Punctuation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸬</span>
HTML Code:
<span>&#11820;</span>
HEX Code:
<span>&#x2E2C;</span>

Add with CSS

.squared-four-dot-punctuation::before {
  content: '\\2E2C';
}

Set it in JavaScript

document.querySelector('.squared-four-dot-punctuation').textContent = '⸬';
copied