Is there some way of looping through all the known characters, filtering out the letters & numbers, then pushing them to an array or string?
Something like…
const myChars = [some method to generate every QWERTY character I could type] ♂️
let regex = new RegExp[anything not a letter or number])
const aRaw = myChars.split("")
const clean = aRaw.filter((e) => e.match(regex))
return clean // leaving me with a master array of all special characters! Muhhahahaha
Note! I do not want to REMOVE these characters from a string. I want to "automagically" generate them. Not "randomly gen characters" from a given string, either.