קודדו טקסט ל-Base64 או פענחו Base64 בחזרה לטקסט. בטוח ל-UTF-8 עם זיהוי כיוון אוטומטי.
כיצד להשתמש במקודד Base64
הקלידו טקסט לקידוד, או הדביקו Base64 לפענוח.
לחצו על הרצה. הכיוון מזוהה אוטומטית.
העתיקו את התוצאה מלוח הפלט.
Base64 represents binary or text data using just 64 printable ASCII characters (A-Z, a-z, 0-9, plus + and /), encoding every three bytes as four characters. That keeps data intact when it travels through systems that were built for text rather than raw bytes.
You see it everywhere: data URLs that embed an image directly in HTML or CSS, email attachments (MIME), the header and payload of a JSON Web Token, HTTP Basic authentication headers, and many API fields that need to carry binary data as a plain string.
This tool encodes text to Base64 and decodes Base64 back to text, choosing the direction automatically. It is UTF-8 safe, so accents, emoji and other Unicode characters survive the round trip without corruption, which the naive built-in browser functions do not guarantee on their own.
It is important to know what Base64 is not: it is an encoding, not encryption. Anyone can decode it instantly, so it provides zero security. Never use it to hide passwords, tokens or secrets. Its job is safe transport and representation, not confidentiality.
Base64 also has a size cost. The encoded output is about 33 percent larger than the original, because four characters stand in for every three bytes. That trade-off is usually worth it for compatibility, but it is why you would not Base64-encode large files when a real binary channel is available.
Everything runs in your browser, so the text you paste is never uploaded. To turn an image file into a Base64 data URL instead of plain text, use the dedicated Image to Base64 tool.
שאלות נפוצות
אם הקלט שלכם נראה כמו Base64 תקין ומתפענח לטקסט UTF-8 קריא, הוא מפוענח; אחרת הוא מקודד. זה מכסה את המקרים הנפוצים ללא מתג ידני.
כן. הקידוד והפענוח בטוחים ל-UTF-8, כך שאימוג'י, סימני ניקוד ותווי Unicode אחרים עוברים הלוך ושוב בצורה תקינה.
Base64 הוא קידוד, לא הצפנה. הוא הפיך בקלות ואינו מספק שום אבטחה. לעולם אל תשתמשו בו כדי להגן על נתונים רגישים.
הטמע את הכלי הזה
הוסף את הכלי הזה לאתר שלך. העתק את קטע הקוד שלהלן; הוא מתעדכן אוטומטית.
<iframe src="https://monu.tools/embed/he/base64-encoder" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>כלים קשורים
קודדו ופענחו כתובות URL ורכיבי URL בקידוד אחוזים, עם תמיכה בטוחה ב-UTF-8.
פענחו JSON Web Token כדי לבחון את הכותרת (header) והמטען (payload) שלו, עם זמני תפוגה והנפקה בפורמט קריא. הכול פועל בדפדפן שלכם; אסימונים לעולם לא מועלים.
צרו ערכי Hash מסוג SHA-1, SHA-256, SHA-384 ו-SHA-512 לכל טקסט, ישירות בדפדפן שלכם.
צרו HMAC עבור הודעה ומפתח סודי באמצעות SHA-1, SHA-256, SHA-384 או SHA-512, בדפדפן שלכם.