Fullwidth Digit Five

Shortcodes

Copy and paste codes for Fullwidth Digit Five symbol 5 to use in your websites, apps, blogs, and more.

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
copied

Customize Fullwidth Digit Five Symbol

Customize 5 symbol as you like and download Fullwidth Digit Five as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Fullwidth Digit Five symbol in HTML, CSS, and JS?

Insert 5 Fullwidth Digit Five using HTML

1. Copy-paste Fullwidth Digit Five directly:
<span>5</span>
2. HTML Decimal Code:
<span>&#65301;</span>
3. Hexadecimal Code:
<span>&#xFF15;</span>
Preview:

Add Fullwidth Digit Five symbol with CSS

.fullwidth-digit-five::before {
    content: '\\FF15';
}
Preview: Fullwidth Digit Five

Fullwidth Digit Five JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-digit-five').textContent = '5';
2. Unicode Escape for 5:
document.querySelector('.fullwidth-digit-five').textContent = '\uFF15';
Preview: