> encode | decode | safe <
// ترميز Base32 لنقل البيانات المتوافق مع RFC
Easy to Use
Simple interface for instant Base32 encoding and decoding. No technical knowledge required.
Local Processing
All conversions happen in your browser. Your data never leaves your device.
Human-Friendly
Uses only uppercase letters and numbers, avoiding confusing characters like 0, 1, O, I.
// حول ترميز BASE32
كيف يعمل Base32:
Base32 يستخدم 32 حرفاً (A-Z، 2-7) لتمثيل البيانات وفقاً لمعيار RFC 4648. إنه مقاوم للأخطاء ومثالي للبيئات الحساسة لحالة الأحرف.
مثال:
"مرحبا" → JBSWY3DPFQQHO33SNRSCC===
لماذا استخدم Base32:
- >مقاوم للأخطاء
- >غير حساس لحالة الأحرف
- >متوافق مع معيار RFC 4648
- >مثالي لأنظمة الملفات
- >يتجنب الأحرف المشكوك فيها
>> الأسئلة الشائعة
What is Base32 encoding?
Base32 is a base-32 numeral system that uses 32 symbols (A-Z, 2-7) to represent binary data in a human-readable format, avoiding ambiguous characters.
When should I use Base32?
Base32 is ideal when you need human-readable encoding that avoids confusing characters. It's commonly used for authentication tokens, API keys, and user-facing identifiers.
Why doesn't Base32 use all numbers and letters?
Base32 excludes 0, 1, O, and I to avoid confusion between similar-looking characters. This makes it more reliable for manual entry and reading.
What do the equal signs mean?
The equal signs (=) are padding characters used to make the encoded string length a multiple of 8 characters, ensuring proper decoding.