Encode a simple word
Input
hello
Output
96==@
Shows how printable ASCII letters change under ROT47.
Developer Tools
Review practical ROT47 Encode examples so you can understand expected input, output, and common patterns faster.
Use this ROT47 encoder to rotate printable ASCII characters and create ROT47-encoded output instantly. It is useful for puzzles, CTF practice, lightweight obfuscation demos, and learning how broader printable-character rotation differs from ROT13. Paste text into the tool and get ROT47 output directly in the browser.
Example pages are especially useful for developer tools because they show what good input looks like, what kind of output to expect, and how the tool behaves in common scenarios.
Input
hello
Output
96==@
Shows how printable ASCII letters change under ROT47.
Input
Hello, 123!
Output
w6==@[ `abP
Useful for seeing how digits and punctuation also change in ROT47.
Fix: ROT47 is mainly designed around printable ASCII characters.
Fix: ROT47 is only a reversible character rotation, not secure encryption.
Fix: ROT47 works best on normal printable text.
Fix: Use ROT47 Decode, even though the transform is symmetrical.
Fix: ROT47 affects many printable ASCII symbols, not just letters.
After reviewing these examples, run the live tool with your own input. If your task involves a follow-up step, the related page can help you move to the next tool in the workflow.
Open the main ROT47 Encode page and test your own real input.