Base64 Encoder/Decoder

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

개인 정보 보호: 로컬로 처리되고, 결코 업로드하지 않습니다.

↓ 아래의 입력 영역에 결결과를 즉시 볼 수 있습니다.

在此输入文本或 Base64

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

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

빠른 시작

  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.

예제

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.