What makes a palindrome
A palindrome reads the same forwards and backwards. The simplest are single words like "level", "radar" and "kayak". The more impressive are phrases that work once you ignore spaces, punctuation and capitalisation — "A man, a plan, a canal: Panama" being the most famous in English.
That convention of ignoring non-letters is what the default setting here follows, because almost every interesting palindrome depends on it. Turn it off and only exact character-for-character mirrors count.
Why they fascinate people
Palindromes sit at an intersection of language, mathematics and puzzle-making that has attracted attention for over two thousand years. The Latin "Sator square", a palindrome that works in multiple directions, was found scratched into walls at Pompeii. Constructing a long palindrome that also makes grammatical sense is genuinely difficult, which is why the good ones are celebrated and reused.
Palindromes in numbers
Numeric palindromes read the same in both directions — 12321, or a date like 02/02/2020. They appear in recreational mathematics through the "196 problem": take a number, add it to its reverse, and repeat. Most numbers reach a palindrome quickly, but a few, called Lychrel numbers, appear never to, and whether 196 ever does remains unproven despite billions of iterations.
Palindromic dates draw attention when they occur, and some are rare enough to happen only once in a lifetime depending on the date format used.
Where checking them matters practically
Beyond wordplay, palindrome detection is a classic programming exercise, used to teach string manipulation and the two-pointer technique in nearly every introductory course. It appears in coding interviews constantly.
Palindromic sequences also matter in biology. In DNA, certain restriction enzymes recognise palindromic sequences — reading the same on both strands in opposite directions — and cut there. This is fundamental to genetic engineering, so the concept reaches well beyond word games.
Constructing your own
The find-palindromes box helps you spot existing ones in a text, but building a new phrase is a craft. The usual method is to work outward from the centre, adding matched letters on each side and inserting word breaks where they fall naturally. The difficulty is keeping the result grammatical, which is why most constructed palindromes read slightly strangely.
Checked in your browser
Everything runs locally with nothing transmitted.
Frequently Asked Questions
Should spaces and punctuation count?
By convention, no. Almost every notable palindrome phrase works only when spaces, punctuation and case are ignored, which is the default here.
What is the most famous English palindrome?
"A man, a plan, a canal: Panama" is the best known. "Was it a car or a cat I saw?" is another widely cited example.
Can numbers be palindromes?
Yes. A number like 12321 reads the same in both directions. Palindromic dates such as 02/02/2020 are a popular example.
Why are palindromes used in programming?
Checking one is a classic exercise for teaching string manipulation and the two-pointer technique, and it appears frequently in coding interviews.
Do palindromes matter outside wordplay?
Yes. In DNA, restriction enzymes recognise and cut palindromic sequences, which is fundamental to genetic engineering.