ترميز Base64 — واحد من أكثر الطرق استخداماً لتمثيل البيانات الثنائية كنص. مطور لأنظمة البريد الإلكتروني، يستخدم مجموعة من 64 حرفاً آمناً لترميز أي بيانات. اليوم Base64 يستخدم في تطوير الويب وAPIs وتخزين البيانات والعديد من التطبيقات الأخرى.
حول النص العادي أو JSON أو أي بيانات UTF-8 إلى ترميز Base64.
فك تشفير سلاسل Base64 مرة أخرى إلى نص قابل للقراءة فوراً.
Base64URL / JWT
Decode URL-safe Base64 tokens (JWTs, API keys, OAuth)
Use - and _ instead of + and / for web URLs
إزالة = من نهاية الإخراج
احتفظ بالمسافات لسهولة القراءة
تحقق من صحة Base64 المدرج قبل فك التشفير
هل تحتاج إلى تحويل ملف JPG أو PNG أو SVG أو WebP أو صورة أخرى؟ استخدم أداة تحويل الصور إلى Base64.
هذه الأداة مثالية لترميز وفك ترميز Base64 للنصوص. لملفات الصور، استخدم محوّل الصور إلى Base64.
Base64 هو تمثيل نصي للبيانات الثنائية. يحول أي بيانات — نص أو ملفات أو رموز — إلى مجموعة من 64 حرفاً آمناً (A-Z, a-z, 0-9, +, /) للكتابة ويستخدم = للحشو.
هذا يجعله مثالياً لـ:
مثال:
عند استخدام بيانات Base64 في URLs أو نقاط نهاية API، قد تكسر + و / سلاسل الاستعلام. Base64 الآمن للـ URL يستبدلها بـ:
هذا المتغير يزيل الحشو ويستخدم على نطاق واسع في رموز الويب (JWTs) و REST APIs.
أداة Base64 Encoder/Decoder المجانية — الأداة المثالية لأي شخص يريد تحويل النص إلى ترميز Base64 أو فك تشفير Base64 إلى نص قابل للقراءة. سواء كنت مطوراً يعمل مع APIs، طالباً يدرس نقل البيانات، أو تحتاج ببساطة لتحويل البيانات لمشروع، محولنا يجعل العمل مع ترميز Base64 بسيطاً.
الميزات الرئيسية لمحول Base64 تشمل: التحويل الفوري بين النص وBase64، دعم جميع الرموز واللغات الدولية، خيارات آمنة للـ URL وبدون حشو، التحقق الصارم ومعالجة الأخطاء، إحصائيات في الوقت الفعلي والاستخدام المجاني تماماً بدون تسجيل.
Base64 Encoder/Decoder هي أداة عبر الإنترنت تتيح لك إدخال أي نص ورؤية نسخة Base64 فوراً. يمكنك أيضاً لصق نص Base64 المشفر في المحول لفك تشفيره مرة أخرى إلى النص العربي.
هذا يجعل الأداة مفيدة للمطورين والطلاب وأي شخص يعمل مع نقل البيانات وAPIs.
أبجدية Base64 تحتوي على الحروف A–Z و a–z والأرقام 0–9 والرموز + و /. كل مجموعة من 3 بايت تتحول إلى 4 أحرف Base64:
= يستخدم للحشو
من خلال ممارسة هذه التحويلات، يمكنك فهم كيفية عمل Base64 واستخدامه في مشاريعك.
هناك العديد من الأسباب لاستخدام محول Base64 عبر الإنترنت:
هذا يفسر لماذا تزداد عمليات البحث عن "base64 encoder online" بسرعة—الناس يعيدون اكتشاف Base64 من خلال تطوير الويب وAPIs وتخزين البيانات.
فك تشفير Base64 يعمل بالعكس: بدلاً من ترميز النص إلى Base64، يقرأ نص Base64 المشفر ويحوله إلى نص عربي عادي.
هذه الوظيفة مفيدة عندما تواجه بيانات Base64 في APIs أو ملفات التكوين أو قواعد البيانات وتريد فهمها بسرعة.
عند استخدام بيانات Base64 في URLs أو نقاط نهاية API، قد تكسر + و / سلاسل الاستعلام. Base64 الآمن للـ URL يستبدلها بـ:
إضافة خيارات آمنة للـ URL يجعل تحويل Base64 يعمل بشكل أفضل في تطبيقات الويب وAPIs.
To encode: paste or type UTF-8 text (including JSON, URLs, or emoji), keep the direction on encode, adjust URL-safe or padding options if you need them, and run the conversion—the output appears as a Base64 string with live validation. To decode: switch to decode mode, paste the Base64 string, and decode; the tool checks the alphabet and padding, then shows the original text. Everything runs in your browser with UTF-8 end to end.
Yes. The tool is free to use with no registration, no paywall, and no limit on how often you encode or decode. Processing stays on your device, so your input is not uploaded or stored on our servers.
No. Base64 is encoding, not encryption. Anyone can decode standard Base64 without a secret key. It does not hide meaning—use real cryptography when you need confidentiality, integrity, or authentication.
Base64 represents binary data as ASCII text so it can travel safely through systems that only handle text—email (MIME), JSON payloads, URLs, logs, and config files. APIs often use it for small binary blobs or tokens embedded in text. The trade-off is size: encoded data is roughly a third larger than the raw bytes.
Yes. The tool works with UTF-8 text. Any character your browser can represent in UTF-8—including accented letters, symbols, and emoji—can be encoded to Base64 and decoded back when the whole pipeline uses consistent UTF-8.
Standard Base64 uses + and /, which can be problematic in URLs and some query strings. URL-safe Base64 typically replaces + with - and / with _, and may handle padding differently. This tool lets you toggle URL-safe output when you need strings that travel cleanly in web addresses, cookies, or tokens.
This page is optimized for text. To work with images you usually convert them elsewhere (for example to a data URL or another binary workflow), then paste the resulting text here if you want to inspect or practice Base64 on that string—not raw binary upload.
The implementation follows common Base64 rules (RFC 4648 style): 64-character alphabet, grouping into 24-bit chunks, padding with = when needed, and UTF-8 for text. Validation helps catch malformed input before decoding.
For the UTF-8 string "Hello World!", a typical Base64 value is SGVsbG8gV29ybGQh. The exact characters can vary slightly if you change URL-safe or padding options.
Base64 turns every 3 bytes into 4 encoded characters. When the input length is not a multiple of 3, the encoder adds padding characters—usually =—so the output length stays a multiple of 4. Decoders use padding to know how many bits in the last group are real data versus fill. Padding is not part of the 64-letter alphabet; it signals how the last block was encoded.
أداة Base64 Encoder/Decoder عبر الإنترنت مصممة للمطورين والمتحمسين على حد سواء. أدخل اسمك أو اقتباسك المفضل أو رسالتك السرية وشاهد كيف تبدو في Base64. بنقرة واحدة يمكنك:
سريع، بسيط ومجاني دائماً.
أدوات مجانية عبر الإنترنت لتحويل وترميز وتحويل النصوص
تحويل حالة النص — أحرف كبيرة، صغيرة، حالة العنوان والمزيد
حوّل النص إلى كود مورس والعكس
حوّل النص إلى ثنائي والعكس
تشفير وفك تشفير النص باستخدام التشفير ROT13
يحوّل النص إلى أحرف Unicode فوقية حيثما كان ذلك مدعوماً.
تحويل النص إلى نص سفلي Unicode حيث يتم دعمه
أنشئ نصًّا مشطوبًا بـ Unicode للنسخ واللصق فوراً
تحويل الصور إلى سلاسل Base64 وعناوين URI للبيانات