Palindrome checker
Check whether text reads the same backwards and find palindromic words in it.
Related tools
Palindrome checker
Paste any text and the tool tells you two things at once: whether the whole input is a palindrome, and which individual words in it are palindromes. The verdict comes first, followed by a list of every palindromic word found, each with an occurrence count when it appears more than once. It works for a single word like "racecar", a classic phrase like "Was it a car or a cat I saw?", or a whole page of prose you want to mine for palindromes.
The options control what counts as "the same backwards". Ignoring case treats "Anna" as a palindrome; ignoring spaces and punctuation is what makes phrase palindromes work at all, since "A man, a plan, a canal: Panama" only reads the same once the commas, colon and spaces are dropped. Ignoring diacritics compares accented letters by their base form, which matters in languages like Slovak or Hungarian where "Jeleňovi pivo nelej" is a well-known palindrome. The minimum word length keeps trivial one- and two-letter words like "a" or "oo" out of the results — raise or lower it to taste.
The word search understands full Unicode: accented letters, digits (so 121 counts) and emoji are handled by code point, and Windows or Unix line endings make no difference. The tally under the output shows how many words were scanned and how many palindromes were found.
Everything runs locally in your browser. Nothing you paste is uploaded or stored, so checking private notes, drafts or homework is completely safe.