Skip to content

Instantly share code, notes, and snippets.

@luishendrix92
Last active February 18, 2024 21:52
Show Gist options
  • Save luishendrix92/f9f9a807b0b932b7090aa68c62f3e940 to your computer and use it in GitHub Desktop.
Save luishendrix92/f9f9a807b0b932b7090aa68c62f3e940 to your computer and use it in GitHub Desktop.
Vaporwave aesthetic full-width text generator
const vaporwave = str =>
str.split('')
.map(char =>
/\S/i.test(char)
? String.fromCharCode(char.charCodeAt(0) + 65248)
: char)
.join('')
//!> Corporate Aesthetic 80's Shopping Mall
console.log(
vaporwave("Corporate Aesthetic 80's Shopping Mall"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment