Symbol For Negative Acknowledge

Shortcodes

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

Unicode
U+2415
HTML Code
␕
HEX Code
␕
CSS Code
\2415
JS/JSON
\u2415
Unix/C/PHP/JAVA
0x2415
URL-encode
%E2%90%95

Customize Symbol For Negative Acknowledge

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

  

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

Insert in HTML

1. Direct symbol:
<span>␕</span>
HTML Code:
<span>&#9237;</span>
HEX Code:
<span>&#x2415;</span>

Add with CSS

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

Set it in JavaScript

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