テキストと文書ツール

Palindrome チェッカー

「Palindrome チェッカー」はテキストと文書に使えるブラウザツールです。入力内容と結果は通常この端末内で処理され、登録は必要ありません。

ブラウザ内で処理登録不要プライバシーの説明 ↗

Maximum 100,000 characters. Per-line mode supports up to 10,000 lines.

Comparison rules

使い方

使い方

  1. Enter up to 100,000 characters and choose whole-text or per-line checking.
  2. Choose displayed graphemes or Unicode code points, then set case, whitespace, punctuation, symbol, and diacritic rules.
  3. Check the result and review the normalized sequence or first mismatching comparison positions.

Normalization before a symmetric comparison

Input is normalized to Unicode NFC before filtering. Optional case-insensitive matching uses JavaScript Unicode lowercase conversion. Diacritic-insensitive mode decomposes text and removes characters with the Unicode Diacritic property before returning to NFC. The comparison then walks inward from both ends and reports the first mismatch in the processed sequence.

Choose what one comparison unit means

Displayed-grapheme mode uses browser grapheme segmentation so combining sequences, flags, emoji modifiers, and joined emoji remain intact. Code-point mode exposes the underlying Unicode scalar sequence. Ignoring whitespace, punctuation, or symbols uses Unicode properties and can change what remains; an empty processed sequence is reported as having no comparable characters instead of being called a palindrome.

よくある質問

あわせて知りたいこと

Does “RaceCar” count as a palindrome?

Yes when Ignore uppercase and lowercase is enabled, which is the default. Turn it off for an exact case-sensitive comparison.

Can it check a sentence?

Yes. Ignore whitespace and punctuation to check a phrase such as “A man, a plan, a canal: Panama!” without those separators.

Why can an emoji behave differently between modes?

A displayed emoji may contain several code points joined into one grapheme. Grapheme mode keeps the visible sequence together; code-point mode compares each component separately.