Fullwidth Digit Five

Shortcodes

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

Unicode
U+FF15
HTML Code
5
HEX Code
5
CSS Code
\FF15
JS/JSON
\uFF15
Unix/C/PHP/JAVA
0xFF15
URL-encode
%EF%BC%95

Customize Fullwidth Digit Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>5</span>
HTML Code:
<span>&#65301;</span>
HEX Code:
<span>&#xFF15;</span>

Add with CSS

.fullwidth-digit-five::before {
  content: '\\FF15';
}

Set it in JavaScript

document.querySelector('.fullwidth-digit-five').textContent = '5';
copied