Hi, I was looking for an spinner that changed the letters for other similar looking symbols. I know that's worthless for seo now but I would like the name of that spinner for a non-seo experiment. Anybody knows?
I don't think there is any kinds of spinners that will do that for you out of the box, because they work on a word level, not a letter level. I don't think this would be very hard for you to code yourself if you have some code knowledge
you could load up python and run the following: Code: from random import choice tospin = "Insert your text here aeiou" output = '' syns = [['a', '@'],['i', '|'], ['do', 'the'],['rest','like'],['this','.']] for i in range(len(tospin)): temp = tospin[i] for char in syns: if tospin[i] in char: temp = choice(char) continue output += temp print output