Instantly check if any word, sentence, or number reads the same forwards and backwards โ with character mirror visualization and batch checking.
Type or paste any text and click Check . The tool shows whether it is a palindrome, displays the cleaned comparison string, and visualises each character mirror pair.
Enter multiple words or phrases โ one per line โ to check all of them at once. The same ignore options from the single checker apply.
A palindrome is a word, phrase, number, or sequence of characters that reads the same forwards and backwards. The term comes from the Greek palindromos (ฯฮฌฮปฮนฮฝ ฮดฯฯฮผฮฟฯ), meaning "running back again" โ from palin (again) + dromos (running). Palindromes appear across all human languages and throughout mathematics, literature, and computer science.
amanaplanacanalpanama
.
A categorised reference of the most well-known palindromes in English. Click any row in the single checker above to test it instantly.
The tool uses the two-pointer algorithm โ the most efficient method to test for palindromes. One pointer starts at the leftmost character and one at the rightmost. Both pointers move inward simultaneously, comparing characters at each step. If any pair mismatches, the string is not a palindrome. If they meet in the middle without a mismatch, it is a palindrome.
Before the algorithm runs, the input is cleaned according to your selected options โ converting to lowercase (ignore case), removing spaces, stripping punctuation, or removing digits โ so the comparison is made on the meaningful characters only.
Common words and phrases with their palindrome status, cleaned form, and character count โ useful for quick lookups and teaching examples.
| Word / Phrase | Palindrome? | Cleaned Form | Length | Note |
|---|---|---|---|---|
| racecar | โ Yes | racecar | 7 | Classic single-word example |
| level | โ Yes | level | 5 | Common English word |
| radar | โ Yes | radar | 5 | Also an acronym |
| madam | โ Yes | madam | 5 | "Madam, I'm Adam" is also palindromic |
| civic | โ Yes | civic | 5 | Also a Honda model |
| deified | โ Yes | deified | 7 | Theological vocabulary |
| hello | โ No | hello | 5 | Reversed: olleh |
| world | โ No | world | 5 | Reversed: dlrow |
| python | โ No | python | 6 | Reversed: nohtyp |
| A man a plan a canal Panama | โ Yes | amanaplanacanalpanama | 21 | Most famous sentence palindrome |
| Was it a car or a cat I saw | โ Yes | wasitacaroracatisaw | 19 | Classic phrase |
| Never odd or even | โ Yes | neveroddoreven | 14 | Reads same backwards |
| Step on no pets | โ Yes | steponnopets | 12 | Beloved by animal lovers |
| 121 | โ Yes | 121 | 3 | 11ยฒ |
| 12321 | โ Yes | 12321 | 5 | 111ยฒ |
| 123456789 | โ No | 123456789 | 9 | Reversed: 987654321 |
amanaplanacanalpanama
, which is identical forwards and backwards. The phrase was created by wordplay enthusiast Leigh Mercer and published in 1948.
left = 0
) and one at the end (
right = length - 1
). Compare the characters at both pointers โ if they match, advance both pointers inward. If they do not match, the string is not a palindrome. Continue until the pointers meet or cross. This runs in
O(n) time
and
O(1) extra space
.