Base64

ترميز & فك ترميز Base64

أسهل وأسرع طريقة لترميز وفك ترميز Base64 عبر الإنترنت

مجاني وآمن ويعمل بالكامل في متصفحك. لا يتم إرسال أي بيانات إلى أي خادم.

// Input
"Hello, World!"
 
// Base64 Encoded
"SGVsbG8sIFdvcmxkIQ=="

لماذا 2Base64؟

سريع للغاية

كل شيء يحدث فورياً في متصفحك.

🔒

آمن 100%

بياناتك لا تغادر جهازك أبداً.

💻

صديق للمطورين

واجهة نظيفة مع دعم UTF-8.

🎁

مجاني تماماً

بدون تسجيل، بدون حدود، بدون رسوم خفية.

ما هو Base64؟

Base64 هو نظام ترميز يمثل البيانات الثنائية كسلسلة ASCII باستخدام 64 حرفاً قابلاً للطباعة.

كيف يعمل Base64؟

Base64 encoding works by taking groups of three bytes (24 bits) of binary data and splitting them into four groups of six bits each. Each 6-bit group is then mapped to one of 64 printable ASCII characters.

لماذا نستخدم Base64؟

Base64 encoding is essential in many areas of software development. It is used to embed images in HTML/CSS, transmit binary data over text-based protocols like email (MIME) and HTTP, store data in JSON/XML formats, and encode authentication credentials.

الاستخدامات الشائعة

  • Embedding images in HTML/CSS using data URIs
  • Sending email attachments via MIME encoding
  • Encoding binary data in JSON and XML payloads
  • HTTP Basic Authentication credentials
  • Storing binary data in text-based databases
  • Data transfer between different systems and platforms