Skip to content

인코더 및 암호

Data URL 변환기

무료 data URL 변환기. 모든 파일을 인라인 임베딩을 위한 base64 data URL로 인코딩하거나, data URL을 파일로 디코딩하세요. 브라우저 기반, 업로드 없음.

Runs in your browser
Encode a file
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.

모두 보기 인코더 및 암호