Digit Five

5

Shortcodes

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

Unicode
U+0035
Alt Code
53
HTML Code
5
HEX Code
5
CSS Code
\0035
JS/JSON
\u0035
Unix/C/PHP/JAVA
0x35
URL-encode
5

Customize Digit Five

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

5
  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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