Basic Auth Header Encoder / Decoder

Encode

Builds the full Authorization header value from a username and password.

Decode

Paste a full Basic <base64> header, or just the base64 part.

How it works

A Basic Auth header is Basic followed by the Base64 encoding of username:password. Encoding here joins your username and password with a colon and Base64-encodes the result with full Unicode support; decoding reverses that, splitting on the first colon so a password containing one is preserved intact.