Encrypt and decrypt text using various methods including Base64, Caesar cipher, and ROT13. Secure your sensitive information.
Base64 is a binary-to-text encoding scheme. It's commonly used for encoding data in web applications and email systems. Note: This is encoding, not encryption!
A simple substitution cipher where each letter is shifted by a fixed number of positions in the alphabet. Julius Caesar used this method with a shift of 3.
A special case of Caesar cipher with a fixed shift of 13. It's often used in online forums to hide spoilers or offensive content.
Simply reverses the order of characters in the text. Easy to decode but can be useful for basic obfuscation.
Important: These methods are for educational purposes and basic obfuscation only. For real security needs, use proper encryption libraries and strong encryption algorithms like AES.