# Quoted-Printable Encoder & Decoder

> Encode and decode quoted-printable, the MIME format used in email bodies and headers.

To encode quoted-printable, paste text containing non-ASCII characters and each byte outside the printable range becomes an equals sign followed by two hex digits. Lines are soft-wrapped at 76 characters, as required by the MIME specification for email.

**URL:** https://convertto.tech/t/quoted-printable
**Category:** Encoders & Decoders (https://convertto.tech/c/encoding-tools)
**Privacy:** Runs entirely in the browser; no upload
**Cost:** Free, no sign-up
**Last updated:** 2026-08-01

## Key facts

- **Privacy:** Runs entirely in your browser — nothing is uploaded
- **Cost:** Free, unlimited, no sign-up

## How to use

1. Enter or paste your text or quoted-printable.
2. Choose the direction.
3. The result appears immediately — copy or download it.

## FAQ

### Where is quoted-printable still used?

Email. It encodes only the bytes that are unsafe, leaving ASCII readable, so a mostly-English message stays legible in the raw source — unlike Base64, which obscures everything. That readability is why email retained it.

### What does =20 at the end of a line mean?

An encoded space. Trailing spaces must be encoded because mail servers strip them, and stripping one would change the message. =20 is a space that survives transport.

## Related tools

- [Base32 Encoder & Decoder](https://convertto.tech/t/base32-encode-decode): Encode and decode Base32 (RFC 4648) — used by TOTP secrets and case-insensitive identifiers.
- [Base58 Encoder & Decoder](https://convertto.tech/t/base58-encode-decode): Encode and decode Base58 — the Bitcoin alphabet that omits look-alike characters.
- [Base64 Encoder & Decoder](https://convertto.tech/t/base64-encode-decode): Encode and decode Base64 with automatic direction detection, plus file and data-URI support.
- [Binary to Text Converter](https://convertto.tech/t/binary-to-text): Translate text into binary ones and zeros, and decode binary back into readable text.
- [Hex to Text Converter](https://convertto.tech/t/hex-to-text): Convert text to hexadecimal bytes and decode hex strings back into readable text.
- [JWT Decoder](https://convertto.tech/t/jwt-decoder): Decode a JSON Web Token to inspect its header, payload and expiry — locally, never sent anywhere.
- [Unicode Escape Converter](https://convertto.tech/t/unicode-escape): Convert characters to \u escape sequences and back — for JSON, JavaScript and source code.
- [URL Encoder & Decoder](https://convertto.tech/t/url-encode-decode): Percent-encode text for safe use in URLs, and decode encoded URLs back to readable text.
