Base64 Encoder/Decoder

Useful for API payload debugging, credential checks, and text transport prep.

Privacidad: procesado localmente, nunca cargado.

↓ Pega en el área de entrada de abajo para ver los resultados al instante

在此输入文本或 Base64

支持中文与 emoji,选择编码或解码后查看结果。

Useful for API payload debugging, credential checks, and text transport prep.

Inicio rápido

  1. Input text or Base64

    Chinese, emoji, and special characters are supported.

  2. Choose encode or decode

    Results are generated instantly.

  3. Copy result

    Copy output for API requests or configs.

Base64 is not encryption

Base64 is encoding, not security. Anyone can decode it back.

Common use cases

Base64 appears in Authorization headers, Data URLs, and email payloads.

Ejemplos

Encode example

Input

hello

Output

aGVsbG8=

Decode example

Input

5L2g5aW9

Output

你好

FAQ

Why decode throws error?

Input may be invalid Base64 or truncated.

Does it support UTF-8?

Yes, UTF-8 strings including CJK and emoji are supported.