Vowel Remover

Strp ll vwls frm txt lk ths

Ad placeholder (leaderboard)

A vowel remover, or disemvoweler, deletes every vowel from a piece of text and leaves the consonants behind. The result is often still surprisingly legible, which is why disemvoweling is popular for puzzles, shorthand, and lightweight text obfuscation.

How it works

The tool reads your text character by character and keeps only those characters that are not vowels:

vowels = "aeiou"   (or "aeiouy" if y is included)
for each char:
    if char.toLowerCase() is not in vowels:
        keep it

Comparing the lowercased character against the vowel set means both A and a are removed. Everything else, including numbers, spaces, and punctuation, is copied straight to the output.

Example and notes

The phrase The quick brown fox becomes Th qck brwn fx. Turning on the y option changes Why try? into Wh tr?. Because the original vowels are thrown away, the process cannot be reversed, so save your source text if you need it.

Ad placeholder (rectangle)