Counterbore

Shortcodes

Copy and paste codes for Counterbore symbol ⌴ to use in your websites, apps, blogs, and more.

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

Customize Counterbore Symbol

Customize ⌴ symbol as you like and download Counterbore 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 Counterbore symbol in HTML, CSS, and JS?

Insert ⌴ Counterbore using HTML

1. Copy-paste Counterbore directly:
<span>⌴</span>
2. HTML Decimal Code:
<span>&#9012;</span>
3. Hexadecimal Code:
<span>&#x2334;</span>
Preview:

Add Counterbore symbol with CSS

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

Counterbore JavaScript Code

1. Direct Symbol:
document.querySelector('.counterbore').textContent = '⌴';
2. Unicode Escape for ⌴:
document.querySelector('.counterbore').textContent = '\u2334';
Preview: