Countersink

Shortcodes

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

Unicode
U+2335
HTML Code
⌵
HEX Code
⌵
CSS Code
\2335
JS/JSON
\u2335
Unix/C/PHP/JAVA
0x2335
URL-encode
%E2%8C%B5
copied

Customize Countersink Symbol

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

Insert ⌵ Countersink using HTML

1. Copy-paste Countersink directly:
<span>⌵</span>
2. HTML Decimal Code:
<span>&#9013;</span>
3. Hexadecimal Code:
<span>&#x2335;</span>
Preview:

Add Countersink symbol with CSS

.countersink::before {
    content: '\\2335';
}
Preview: Countersink

Countersink JavaScript Code

1. Direct Symbol:
document.querySelector('.countersink').textContent = '⌵';
2. Unicode Escape for ⌵:
document.querySelector('.countersink').textContent = '\u2335';
Preview: