Counterbore

Shortcodes

Copy useful codes for counterbore symbol ⌴ to use in websites, apps, blogs, and docs.

Unicode
U+2334
HTML Code
⌴
HEX Code
⌴
CSS Code
\2334
JS/JSON
\u2334
Unix/C/PHP/JAVA
0x2334
URL-encode
%E2%8C%B4

Customize Counterbore

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

  

How to use Counterbore Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌴</span>
HTML Code:
<span>&#9012;</span>
HEX Code:
<span>&#x2334;</span>

Add with CSS

.counterbore::before {
  content: '\\2334';
}

Set it in JavaScript

document.querySelector('.counterbore').textContent = '⌴';
copied