Circled Digit Four

Shortcodes

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

Unicode
U+2463
HTML Code
④
HEX Code
④
CSS Code
\2463
JS/JSON
\u2463
Unix/C/PHP/JAVA
0x2463
URL-encode
%E2%91%A3

Customize Circled Digit Four

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

  

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

Insert in HTML

1. Direct symbol:
<span>④</span>
HTML Code:
<span>&#9315;</span>
HEX Code:
<span>&#x2463;</span>

Add with CSS

.circled-digit-four::before {
  content: '\\2463';
}

Set it in JavaScript

document.querySelector('.circled-digit-four').textContent = '④';
copied