// free tools

🔐 Cifra Testo

Base64, ROT13, ROT47, XOR with key, Morse — encode and decode

How to cipher and decipher text online

Supports: Base64 (encodes binary data as ASCII), ROT13 (13-position rotation substitution), ROT47 (extended to printable characters), XOR with key (symmetric cipher), Morse code, and text reversal. Everything processed locally in the browser.

← All tools

When to use this text encoding tool

Encode and decode text with Base64, ROT13, ROT47, keyed XOR, Morse and reversal — useful for technical exercises, light obfuscation, or compatibility with systems that require these formats.

When to use it

When NOT to use it

Alternatives

Common mistakes

Frequently asked questions about text encoding

No, Base64 is an encoding, not an encryption: anyone can decode it without needing a secret key. It's used to represent binary data as text, not to protect sensitive information.

ROT13 is a fixed letter substitution, always reversible in the same way. Keyed XOR uses a secret word for the operation: it's slightly harder to reverse without knowing the key, but it's still weak for serious use.

No, all encoding and decoding happens locally in your browser via JavaScript.