Reading an encoded log entry
Payloads are often logged encoded. Decoding locally shows what was actually sent without piping the string through a shell command.
Convert text to Base64 and back, with UTF-8 handled correctly.
Everything above is processed in this browser tab. Your input is never sent to a server.
Base64 Encoder & Decoder converts text to Base64 and decodes Base64 back to text. Base64 represents binary data using 64 ASCII characters so it can travel safely through systems that expect text, such as HTTP headers, JSON fields, data URIs and email attachments.
Payloads are often logged encoded. Decoding locally shows what was actually sent without piping the string through a shell command.
Basic authentication expects username:password encoded as Base64. Encode it here when testing an endpoint by hand.
Pretty-print, minify and validate JSON with precise error positions.
Percent-encode query values or decode an escaped URL.
Generate cryptographically random version 4 UUIDs in bulk.
Compute SHA-1, SHA-256, SHA-384 and SHA-512 digests of any text.
Hand-picked hubs, guides and companion tools related to this page.
Last reviewed 2026-08-01. Browse the full directory.