Kodlama

Base32

Base32 (RFC 4648) kodlama ve çözme — metin ve dosyalar, doğrudan tarayıcıda.

Sıkça sorulan sorular

How is Base32 different from Base64?

Base32 uses a smaller 32-character alphabet (A-Z and 2-7), which makes it case-insensitive and free of visually ambiguous characters. That makes it popular for things like TOTP secret keys, DNS labels, and filenames, at the cost of larger output.

Why is Base32 output so much bigger than Base64?

Base32 encodes 5 bits per character instead of 6, so the output is about 60% larger than the original data — noticeably more overhead than Base64's ~33%.

Does this tool send my data anywhere?

No. All encoding and decoding runs locally in your browser per RFC 4648 — nothing is uploaded to a server.