Full-width text generator
Full-width text converts ordinary ASCII into wide Unicode characters for that spaced-out aesthetic look you see in vaporwave art and stylized social profiles. Type anything and copy the result straight into a bio, username, or caption.
How it works
Unicode includes a “halfwidth and fullwidth forms” block that mirrors the printable ASCII range. The conversion is a simple, exact arithmetic shift:
fullwidth_code = ascii_code + 0xFEE0
This applies to every printable ASCII character from ! (0x21) through ~ (0x7E), covering letters, digits, and punctuation. The regular space (0x20) does not follow that formula; instead it maps to the ideographic space U+3000, the wide space used in CJK typography. Any character outside the printable ASCII range is left unchanged.
Example and notes
The word aesthetic becomes its wide equivalent aesthetic, where each glyph occupies a full character cell.
Because full-width characters are separate code points from normal ASCII, they may behave differently in search and be read awkwardly by screen readers. Treat full-width text as decorative styling rather than content that needs to be searchable or accessible.