Viewdata Square

Shortcodes

Copy useful codes for viewdata square symbol ⌗ to use in websites, apps, blogs, and docs.

Unicode
U+2317
HTML Code
⌗
HEX Code
⌗
CSS Code
\2317
JS/JSON
\u2317
Unix/C/PHP/JAVA
0x2317
URL-encode
%E2%8C%97

Customize Viewdata Square

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

  

How to use Viewdata Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌗</span>
HTML Code:
<span>&#8983;</span>
HEX Code:
<span>&#x2317;</span>

Add with CSS

.viewdata-square::before {
  content: '\\2317';
}

Set it in JavaScript

document.querySelector('.viewdata-square').textContent = '⌗';
copied