Number Sign

#

Shortcodes

Copy useful codes for number sign # to use in websites, apps, blogs, and docs.

Unicode
U+0023
Alt Code
35
HTML Code
#
HEX Code
#
CSS Code
\0023
JS/JSON
\u0023
Unix/C/PHP/JAVA
0x23
URL-encode
%23

Customize Number Sign

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

#
  

How to use Number Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>#</span>
HTML Code:
<span>&#35;</span>
HEX Code:
<span>&#x0023;</span>

Add with CSS

.number-sign::before {
  content: '\\0023';
}

Set it in JavaScript

document.querySelector('.number-sign').textContent = '#';
copied