Fullwidth Digit Four

Shortcodes

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

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

Customize Fullwidth Digit Four

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

  

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

Insert in HTML

1. Direct symbol:
<span>4</span>
HTML Code:
<span>&#65300;</span>
HEX Code:
<span>&#xFF14;</span>

Add with CSS

.fullwidth-digit-four::before {
  content: '\\FF14';
}

Set it in JavaScript

document.querySelector('.fullwidth-digit-four').textContent = '4';
copied