Fullwidth Digit Nine

Shortcodes

Copy useful codes for fullwidth digit nine symbol 9 to use in websites, apps, blogs, and docs.

Unicode
U+FF19
HTML Code
9
HEX Code
9
CSS Code
\FF19
JS/JSON
\uFF19
Unix/C/PHP/JAVA
0xFF19
URL-encode
%EF%BC%99

Customize Fullwidth Digit Nine

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

  

How to use Fullwidth Digit Nine Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>9</span>
HTML Code:
<span>&#65305;</span>
HEX Code:
<span>&#xFF19;</span>

Add with CSS

.fullwidth-digit-nine::before {
  content: '\\FF19';
}

Set it in JavaScript

document.querySelector('.fullwidth-digit-nine').textContent = '9';
copied