πŸ›‘️ Password Strength Checker

Test how secure your password is against hackers.

Strength: None

πŸ’‘ Tip: Use a mix of uppercase letters, numbers, and symbols for a stronger password.

function checkP(p) { let s = 0; let b = document.getElementById('p-bar'); let t = document.getElementById('p-text'); if (p.length > 7) s++; if (/[A-Z]/.test(p)) s++; if (/[0-9]/.test(p)) s++; if (/[^A-Za-z0-9]/.test(p)) s++; let c = ["#ccc", "#ff4d4d", "#ffd11a", "#a3e635", "#00a884"]; let w = ["None", "Weak", "Fair", "Good", "Excellent"]; b.style.width = (s * 25) + "%"; b.style.background = c[s]; t.innerHTML = 'Strength: ' + w[s] + ''; }
About Us Privacy Policy Terms Disclaimer Contact Us © 2026 Tabassum SEO Tools