Fullwidth Digit Four

Shortcodes

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

Unicode
U+FF14
HTML Code
4
HEX Code
4
CSS Code
\FF14
JS/JSON
\uFF14
Unix/C/PHP/JAVA
0xFF14
URL-encode
%EF%BC%94
copied

Customize Fullwidth Digit Four Symbol

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

Insert 4 Fullwidth Digit Four using HTML

1. Copy-paste Fullwidth Digit Four directly:
<span>4</span>
2. HTML Decimal Code:
<span>&#65300;</span>
3. Hexadecimal Code:
<span>&#xFF14;</span>
Preview:

Add Fullwidth Digit Four symbol with CSS

.fullwidth-digit-four::before {
    content: '\\FF14';
}
Preview: Fullwidth Digit Four

Fullwidth Digit Four JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-digit-four').textContent = '4';
2. Unicode Escape for 4:
document.querySelector('.fullwidth-digit-four').textContent = '\uFF14';
Preview: