text_text_obfuscator
Disguise text by substituting characters with leet, Unicode, homoglyphs, reversal, or random noise for privacy or creative purposes.
Instructions
Obfuscate Text (Leet, Unicode, Homoglyphs, Reverse, Random). Disguise text by substituting characters using one of five techniques: leet speak, Greek/Cyrillic Unicode look-alikes, confusable homoglyphs, word/character reversal, or random character noise. Use it to make text visually unrecognizable for privacy or creative effect; use reverse_text for a clean character/word/line/sentence reversal, case_converter to only change letter case, or rot13/atbash for a reversible cipher. Runs locally on the text you provide: read-only, non-destructive, contacts no external service, and is rate-limited (60 requests/minute for anonymous callers). Output is not reversible, and the "random" type plus "medium"/"heavy" intensities pick replacements randomly, so repeat calls may differ. Returns the obfuscated text, change statistics, the echoed options, and an original-vs-obfuscated comparison.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The input text to obfuscate. Required and non-empty. | |
| obfuscationType | No | Technique to apply. "leetspeak" swaps letters for digits/symbols; "unicode" uses Greek/Cyrillic look-alikes; "homoglyphs" uses confusable characters; "reverse" reverses order; "random" injects random characters. Unknown values return the text unchanged. | leetspeak |
| intensity | No | How aggressively characters are substituted. Ignored by the "reverse" type. "heavy" (and "medium" for some types) chooses among multiple replacements at random. | medium |
| preserveCase | No | Keep the original upper/lower case of substituted letters. | |
| preserveSpacing | No | Keep spaces between words. When false, "reverse" reverses the whole string and "random" may also alter spaces. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | No | Whether obfuscation succeeded. | |
| result | No | The obfuscated text. | |
| statistics | No | Metrics describing the transformation. | |
| options | No | The effective options used for the run. | |
| comparison | No | Side-by-side original and obfuscated text. |