Fullwidth Number Sign

Shortcodes

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

Unicode
U+FF03
HTML Code
#
HEX Code
#
CSS Code
\FF03
JS/JSON
\uFF03
Unix/C/PHP/JAVA
0xFF03
URL-encode
%EF%BC%83

Customize Fullwidth Number Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>#</span>
HTML Code:
<span>&#65283;</span>
HEX Code:
<span>&#xFF03;</span>

Add with CSS

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

Set it in JavaScript

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