Circled Digit One

Shortcodes

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

Unicode
U+2460
HTML Code
①
HEX Code
①
CSS Code
\2460
JS/JSON
\u2460
Unix/C/PHP/JAVA
0x2460
URL-encode
%E2%91%A0

Customize Circled Digit One

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

  

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

Insert in HTML

1. Direct symbol:
<span>①</span>
HTML Code:
<span>&#9312;</span>
HEX Code:
<span>&#x2460;</span>

Add with CSS

.circled-digit-one::before {
  content: '\\2460';
}

Set it in JavaScript

document.querySelector('.circled-digit-one').textContent = '①';
copied