XOR Cipher

XOR your text with a key to get hex output — decrypt with the same key.

How to Use XOR Cipher

  1. Pick Encrypt (text to hex) or Decrypt (hex to text).
  2. Enter a key — it repeats across the whole message when shorter.
  3. Type your message; the XOR result appears instantly as hex (or decrypted text).
  4. XOR is symmetric: the same key both encrypts and decrypts.

Examples

Encrypt — input:

HELLO (key: KEY)

Output:

030015070a

Decrypt — input:

030015070a (key: KEY)

Output:

HELLO

Wrong key — input:

030015070a (key: BAD)

Output:

garbled bytes

Features

Privacy Focused

All processing happens in your browser. No data is sent to servers.

Free Forever

No registration, no limits, completely free to use.