Symbol For Acknowledge

Shortcodes

Copy useful codes for symbol for acknowledge ␆ to use in websites, apps, blogs, and docs.

Unicode
U+2406
HTML Code
␆
HEX Code
␆
CSS Code
\2406
JS/JSON
\u2406
Unix/C/PHP/JAVA
0x2406
URL-encode
%E2%90%86

Customize Symbol For Acknowledge

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

  

How to use Symbol For Acknowledge in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>␆</span>
HTML Code:
<span>&#9222;</span>
HEX Code:
<span>&#x2406;</span>

Add with CSS

.symbol-for-acknowledge::before {
  content: '\\2406';
}

Set it in JavaScript

document.querySelector('.symbol-for-acknowledge').textContent = '␆';
copied