تطوير الويب
Credit Card Validator
التحقق من رقم البطاقة باستخدام خوارزمية Luhn، وتحديد شبكة الدفع والطول. كل شيء يُحسب في المتصفح — الرقم لا يُرسل إلى أي مكان.
الأسئلة الشائعة
Does a passing check mean the card is real and has funds?
No — this tool only verifies the Luhn checksum and the expected digit length for the detected network; it can't tell you whether the card actually exists, is active, or has funds, since that requires contacting the card issuer.
How does the Luhn algorithm work?
It doubles every second digit from the right, sums the digits of the results together with the untouched digits, and checks that the total is a multiple of 10 — it catches most typos and transposed digits but isn't a fraud check.
Is my card number sent anywhere?
No, validation happens entirely in your browser and the number is never transmitted or stored.