المشفّرات والتشفير
محوّل Data URL
محوّل data URL مجاني. رمّز أي ملف إلى data URL مشفّر بـ base64 للتضمين المباشر، أو فكّ ترميز data URL إلى ملف. يعمل في المتصفح بدون رفع.
ملاحظة المحرر
Understanding · Files, smuggled into a string.
هذا الفصل المعمّق متاح حاليًا باللغة الإنجليزية فقط. أداة التحويل أعلاه تعمل بلغتك؛ أما المقال التفصيلي الطويل فلم تتم ترجمته بعد.
الأسئلة المتكررة
Quick answers.
›What is a Data URL?
A Data URL is a scheme used to embed data in-line in documents, formatted as `data:[mediatype][;base64],data`. It is commonly used for small icons or CSS assets to reduce external dependencies.
›Are my files secure?
Yes. The encoding and decoding happen entirely within your browser's memory. No file data is sent to our servers or stored permanently.
›When should I avoid Data URLs?
Base64 encoding increases file size by approximately 33% compared to binary files. Large files should be kept as separate assets to avoid slowing down page renders and to allow for browser caching.
›How do I use the output in CSS?
Copy the generated string and paste it into a `url()` function, such as `background-image: url('data:image/png;base64,...');`. This embeds the image directly within your stylesheet.
يبحث الأشخاص أيضًا عن
Use with
What people reach for next.
أدوات ذات صلة
More in this room.
- تشفير / فك تشفير Base64تشفير وفك تشفير Base64 — آمن لليونيكود.
- ترميز / فك ترميز URLترميز وفك الترميز بالنسبة المئوية لعناوين URL بأمان.
- ترميز / فك ترميز كيانات HTMLهروب أو إلغاء هروب الأحرف الخاصة في HTML.
- محول سداسي عشري / ثنائي / ثمانيالتحويل بين النظام السداسي عشري والثنائي والثماني والعشري.
- ترميز وفك ترميز Base32RFC 4648 Base32 - في كلا الاتجاهين، في المتصفح.
- محول ASCII / Unicodeفحص كل نقطة رمز لأي سلسلة نصية.