Converts text to and from basic leetspeak.
Leetspeak converts text to and from basic 1337 (leet) using a small letter-to-number substitution. In encode mode it replaces a/e/i/o/s/t with 4/3/1/0/5/7, and in decode mode it reverses those numbers back to letters. It is handy for quick fun text styling, generating playful handles, or decoding simple leetspeak you come across.
No. The conversion runs entirely in your browser using local JavaScript, and nothing you type is uploaded or stored on any server.
Encoding maps a, e, i, o, s, and t to 4, 3, 1, 0, 5, and 7. Decoding maps 4, 3, 1, 0, 5, and 7 back to a, e, i, o, s, and t.
Encoding lowercases each character before matching, so both uppercase and lowercase vowels and the supported letters are converted to the same digit.
Decoding only knows the six number-to-letter mappings, and encoding loses original casing. So decoding produces lowercase letters, and any digits in your original text that match the map will also be turned into letters.
No. Any character without a matching entry, such as punctuation, spaces, or unsupported letters, is passed through unchanged.