ترميز / فك Base64
رمّز وفك نص UTF-8 بصيغة Base64.
About this tool
رمّز نصاً إلى Base64 أو فكّه فوراً ومحلياً. يتيح Base64 نقل بيانات عشوائية عبر قنوات لا تقبل الثنائي، مثل رؤوس البريد أو URL البيانات.
Why use it
- تحويل ثنائي الاتجاه دون أي رحلة إلى خادم.
- يتعامل مع نص Unicode كاملاً، لا ASCII فقط.
- نسخ النتيجة بنقرة؛ كل شيء في متصفحك دون إرسال بيانات.
Common use cases
- فك رمز Base64 لمعرفة محتواه.
- ترميز حمولة صغيرة لتضمينها في URL أو إعداد.
- فحص الجزء المرمّز من URI بيانات.
Tips
- Base64 ترميز وليس تشفيراً: وحده لا يخفي شيئاً.
- المخرجات المرمّزة أكبر بنحو ثلث من النص الأصلي.
كيفية الاستخدام
- الصق النص.
- اختر ترميز أو فك.
- انسخ النتيجة.
الأسئلة الشائعة
- What does Base64 encoding do?
- It turns binary or text data into a safe ASCII string that can travel through systems that only handle text.
- Can I both encode and decode?
- Yes, paste plain text to encode it, or paste a Base64 string to decode it back.
- Is my data sent to a server?
- No. Encoding and decoding run in your browser, so your text stays private.
- Is Base64 a form of encryption?
- No. It only changes the representation; anyone can decode it, so never use it to protect secrets.
- Why is the encoded text longer?
- Base64 represents every 3 bytes as 4 characters, adding about a third to the size.
- Does it handle Unicode text?
- Yes, text is treated as UTF-8 so emoji and non-Latin characters encode correctly.