YAML → Base64
YAML을 Base64로 인코딩합니다. CSS 인라인, JSON 설정, API 테스트에 그대로 붙여 쓰기 좋습니다.
Enter or Upload
Input your text or upload a file
Choose Action
Encode, decode or view information
View Results
See output and extra details
Input (Binary)
101010 111100 110101 ...
Split into 6-bit
101010 111100 110101 ...
Convert to Index
42 60 53 ...
Base64 Characters
q 8 1 ...
100% Private & Secure
All processing happens in your browser. No data is sent to any server.
For file payloads, use Image to Base64 or recover an inline asset with Base64 to Image.
Encode YAML — Kubernetes manifests, CI definitions, configuration blobs — into a single Base64 string that survives single-line transports such as environment variables and Docker labels.
All spaces, tabs, and newlines pass through untouched, so YAML structure is restored exactly when the result is decoded.
Yes — every byte including spaces and newlines is preserved verbatim.
Yes. The --- separators are encoded as part of the byte stream and survive decoding intact.
No. Both are encoded as their literal bytes; YAML semantics are not enforced.
No — encoding runs locally in this tab.