Circled letters and numbers for decorative text
This tool maps letters and digits to the Unicode Enclosed Alphanumerics block, drawing each character inside a circle. The result works well for stylised bios, numbered lists and decorative posts, and it survives copy-paste because each circle is its own code point.
How it works
The block is mostly contiguous and the tool handles three ranges plus one special case:
A-Z → U+24B6 .. U+24CF (Ⓐ .. Ⓩ)
a-z → U+24D0 .. U+24E9 (ⓐ .. ⓩ)
1-9 → U+2460 .. U+2468 (① .. ⑨)
0 → U+24EA (⓪, separate from 1-9)
Each character is converted by adding its offset to the matching base, while the zero is handled as a one-off because it lives outside the 1-9 sequence.
Why these survive copy-paste when other decorative text does not
Some decorative text converters produce output that renders nicely on one platform but breaks on others, or loses its formatting when pasted into plain-text fields. Circled letters avoid this problem because each Ⓐ, ⓑ, ①, and so on is a single Unicode code point in the Enclosed Alphanumerics block.
A code point is a defined unit in the Unicode standard — it has a permanent numeric identity, a canonical name, and defined properties. When you copy Ⓐ and paste it anywhere that supports Unicode (which includes essentially every modern app, website, and operating system), you are pasting a single character with a well-defined identity. There is no formatting layer, no invisible styling markup, and no dependency on a specific font having the circled glyph — the glyph is the character.
The exception is very old or constrained rendering environments that do not support the Unicode block. In those cases you may see a fallback box or a question mark.
Practical uses for circled text
Social media bios and profiles
Platforms like Instagram, X/Twitter, and LinkedIn allow Unicode in bios. Circled letters add visual structure without requiring any platform-specific formatting option. For example:
Ⓦ orkshop owner ⓢ elf-taught designer ① 0 years of experience
The circled characters draw the eye differently from plain text and are immediately readable — unlike some overly stylised Unicode converters that produce characters most people cannot identify quickly.
Numbered lists in plain-text environments
When you are writing in a system that does not render markdown or HTML lists — a chat tool, a notes app, some CMS comment fields — circled numbers give you a compact, visually distinct numbered list:
① Choose a plan
② Complete setup
③ Start your free trial
This is far cleaner than using 1., 2., 3. when the environment strips list formatting, and the circled numbers are instantly recognisable as sequential indicators.
Step indicators in designs and wireframes
Circled numbers are a common design pattern for step indicators and onboarding flows. Using the actual Unicode circled number characters in a text layer, rather than drawing circles around plain numbers, keeps the characters searchable and accessible and makes them trivial to copy into code or documentation.
Copyright and trademark markers
⓪ is occasionally used decoratively, though note that © (U+00A9) is the correct copyright symbol for legal use. The circled-C in the Enclosed Alphanumerics block is a stylistic character, not the legal copyright mark.
Tips and compatibility notes
- Spaces and punctuation pass through unchanged, so words stay legible.
- Case is preserved: uppercase input → circled capitals (Ⓐ), lowercase → circled smalls (ⓐ).
- Screen readers vary in how they announce circled characters. Some read “circled Latin capital letter A”, others may just say “A”. For accessibility-critical content, keep critical text in plain characters and use circled text for decorative or supplementary elements only.