# Palindrome Checker

> Check if a word, phrase, or sentence is a palindrome. Also detects anagrams. Case-insensitive, ignores spaces and punctuation.

URL: https://uttir.com/palindrome-checker
Categories: text-tools
Privacy: All checking happens in your browser.

## About

A palindrome is a word, phrase, number, or sequence of characters that reads the same forward and backward (ignoring spaces, punctuation, and case). "racecar", "level", and "A man, a plan, a canal: Panama" are all palindromes.

Type or paste any text and the tool tells you whether it is a palindrome, plus the cleaned-up form it is comparing. Use it for puzzles, words games, or just for fun.

## How to use

1. **Paste your text** — A word, phrase, or full sentence.
2. **Read the result** — "Yes, palindrome" or "Not a palindrome" plus the normalized form.

## Examples

### "A man, a plan, a canal: Panama"

One of the most famous palindromic sentences.

Output:

```
Yes — palindrome
```

### "racecar"

A simple single-word palindrome.

Output:

```
Yes — palindrome
```

## FAQ

### What is an anagram?

An anagram is a word or phrase formed by rearranging the letters of another. "listen" and "silent" are anagrams. The tool can also tell you whether two inputs are anagrams of each other.

### What is ignored when checking?

Case (A = a), spaces, and punctuation. The comparison is on letters and digits only. This matches the conventional definition of a palindrome for word games.

### Are spaces and punctuation ignored?

Yes, by default. "A man, a plan, a canal: Panama" is a palindrome if you strip the punctuation and case-fold. There is a toggle to do a strict character-by-character check if you want.

### Does it support Unicode palindromes?

Yes. The tool normalizes Unicode combining marks and case before comparison, so words like "A̐a̐" (with combining characters) or "ÀÁ" are detected as palindromes. Emoji and surrogate pairs are also handled.

## Related tools

- [Character Frequency Counter](https://uttir.com/character-frequency) — Count how often each character appears in your text. Useful for cryptanalysis, language detection, and stats.
- [Reverse Text](https://uttir.com/reverse-text) — Reverse characters, words, or lines in any text. Unicode-safe. Useful for puzzles, mirrored layouts, and word games.
- [Sentence & Paragraph Counter](https://uttir.com/sentence-counter) — Count sentences, paragraphs, words, characters, and reading time all at once. Find your longest word and average sentence length.

---

For the full HTML page with the live tool, visit https://uttir.com/palindrome-checker.
This file is the markdown rendering at https://uttir.com/palindrome-checker.md. See https://uttir.com/llms.txt for a site-wide summary.
