Symbol For Bell

Shortcodes

Copy useful codes for symbol for bell ␇ to use in websites, apps, blogs, and docs.

Unicode
U+2407
HTML Code
␇
HEX Code
␇
CSS Code
\2407
JS/JSON
\u2407
Unix/C/PHP/JAVA
0x2407
URL-encode
%E2%90%87

Customize Symbol For Bell

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

  

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

Insert in HTML

1. Direct symbol:
<span>␇</span>
HTML Code:
<span>&#9223;</span>
HEX Code:
<span>&#x2407;</span>

Add with CSS

.symbol-for-bell::before {
  content: '\\2407';
}

Set it in JavaScript

document.querySelector('.symbol-for-bell').textContent = '␇';
copied