Obfuscate strings for safer sharing
The string obfuscator turns a piece of text – such as a secret, an IBAN or a token – into an unreadable form that you can share a little more safely over chat, a ticket or email. Important: obfuscation is not encryption. It guards against casual reading and accidental indexing, but it does not replace real cryptography for highly sensitive data. The tool runs entirely in your browser, so your text never leaves the device.
Common use cases
- Share secrets in support: Pass a key or password in a ticket without it appearing in plaintext in logs or search indexes.
- Document examples: Show the shape of a token or an IBAN in a guide without revealing the real value.
- Discourage shoulder surfing: Display values in screenshots or presentations so they cannot be read at a glance.
- Restore it quickly: Turn the original string back when you need it using the matching method.
How to obfuscate a string
- 1 Paste the string you want to obfuscate into the input field.
- 2 Choose the obfuscation method you prefer.
- 3 Copy the obfuscated result and share it.
- 4 To reverse it, paste the obfuscated value back in.
Obfuscation vs. encryption
The key difference: obfuscation can be undone by anyone with the same tool – it raises the bar but offers no cryptographic security. For genuine protection of confidential data you need encryption with a secret key. So use obfuscation deliberately where the goal is convenience and protection against accidental reading, not protection against determined attackers. Because everything happens locally, the plaintext stays on your computer.