💎 Palindrome Checker
Check if text reads same forwards and backwards. Free tool.
Share:
🐦 Twitter
📘 Facebook
Similar Tools
🔤
Text Sorter
🔁
Remove Duplicate Lines
#️⃣
Add Line Numbers
↕️
Reverse Lines
🔎
Find and Replace Text
📊
Word Frequency Counter
About This Tool
Check if text reads same forwards and backwards. Free tool.
How to Use
Enter or paste your data in the input fields above
Results update instantly - all processing in your browser
100% free with no signup or account required
Tool Network
Toolfastpro
Skillgohub
Smarttoolgo
Quickskillhub
function initTool() { document.getElementById('tool-app').innerHTML = '
检测
'; } function doIt() { var text = document.getElementById('inp').value.replace(/[^a-zA-Z0-9]/g,'').toLowerCase(); var isPal = text === text.split('').reverse().join(''); document.getElementById('out').innerHTML = isPal ? '✅ 是回文!' : '❌ 不是回文'; document.getElementById('out').style.color = isPal ? '#27ae60' : '#e74c3c'; } window.addEventListener('DOMContentLoaded', initTool); n
✅ 链接已复制!打开微信粘贴即可发送