Plain Text: the readable form and the hub of the whole tool. Every other format is decoded back to plain text before it is re-encoded, so choosing Plain Text as the output simply returns what was decoded from the input.
Flipped: reverses the order of the characters. You can reverse the whole text, each line, or each word. It is a simple visual obfuscation rather than a cipher.
Leetspeak: replaces letters with similar-looking symbols and digits, such as e to 3, o to 0 and l to 1. The built-in intensity replaces every eligible letter. Decoding is best-effort because one symbol can stand for more than one letter.
HTML Entities: writes characters as HTML references. Non-ASCII characters and the reserved special characters are escaped in decimal form, so the result is safe inside a web page.
Decimal, Octal, Binary and Hexadecimal: show each character as the number of its Unicode code point in base 10, 8, 2 or 16, separated by spaces, in lowercase form and without a prefix. These are the tool's built-in defaults for the numeric formats.
Base64: encodes bytes using a 64-character alphabet, the standard way to carry binary data in text such as email attachments or data URLs. The standard alphabet is used with padding kept.
Roman Numerals: a number notation that works on values from 1 to 3999. Because Roman numerals represent quantities, not letters, this format expects numbers as input and returns numbers when decoded.
Atbash: a substitution cipher from the ancient Near East that reverses the alphabet, mapping A to Z, B to Y and so on. It needs no key and is its own inverse, so encoding and decoding are the same operation.
Caesar and ROT13: shift every letter by a fixed amount. Caesar uses a shift of 3 in this tool; ROT13 is the special case of a shift of 13, which is also its own inverse. Non-letters are left untouched and case is preserved.
Vigenere: a polyalphabetic cipher that shifts each letter by a different amount taken from a repeating keyword. It is much stronger than a single Caesar shift, though still not secure by modern standards.
Pigpen: a symbol cipher historically used by secret societies, in which each letter is a fragment of a grid. Because pigpen has no official Unicode block, this tool uses a distinct Unicode symbol for each letter, so it encodes and decodes reliably but is an approximation of the hand-drawn original.
Morse Code: the telegraph alphabet of dots and dashes. Letters are separated by spaces and words by a slash.
ITA2 / CCITT-2: the five-bit teleprinter code also known as Baudot-Murray. It uses letter and figure shifts to cover letters, digits and punctuation, and the tool outputs the raw five-bit groups.
Navajo Code: the famous World War II code in which each English letter was spoken as a Navajo word. The tool maps each letter to its code word and decodes the words back to letters.
Enigma Machine: simulates the German Enigma I with three rotors, reflector B and an optional plugboard. The tool uses the default rotors I II III at positions AAA with no plugboard, and the machine is symmetric, so the same settings reverse the operation.
MD5 and SHA-1: cryptographic hash functions that turn any text into a fixed-length fingerprint, 32 or 40 hexadecimal characters. Hashing is one-way, so these two formats appear only as outputs and are not offered as inputs.