Fullwidth Digit Three

Shortcodes

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

Unicode
U+FF13
HTML Code
3
HEX Code
3
CSS Code
\FF13
JS/JSON
\uFF13
Unix/C/PHP/JAVA
0xFF13
URL-encode
%EF%BC%93
copied

Customize Fullwidth Digit Three Symbol

Customize 3 symbol as you like and download Fullwidth Digit Three 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 Three symbol in HTML, CSS, and JS?

Insert 3 Fullwidth Digit Three using HTML

1. Copy-paste Fullwidth Digit Three directly:
<span>3</span>
2. HTML Decimal Code:
<span>&#65299;</span>
3. Hexadecimal Code:
<span>&#xFF13;</span>
Preview:

Add Fullwidth Digit Three symbol with CSS

.fullwidth-digit-three::before {
    content: '\\FF13';
}
Preview: Fullwidth Digit Three

Fullwidth Digit Three JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-digit-three').textContent = '3';
2. Unicode Escape for 3:
document.querySelector('.fullwidth-digit-three').textContent = '\uFF13';
Preview: