Developer ToolsEncoders & DecodersFree Tool

Quoted Printable Encoder

Encode text into Quoted-Printable format, escaping non-printable and high-bit characters as =XX hex codes with 76-character line wrapping.

How to Use Quoted Printable Encoder
  1. 1Paste your text
  2. 2Click Process
  3. 3Copy the Quoted-Printable encoded output
Frequently Asked Questions

Characters outside the printable ASCII range 33-126 (except space and tab) are converted to =XX hex codes, where XX is the character's hex code point. The literal = character itself is also escaped since it's QP's own escape marker.

Quoted-Printable's MIME specification limits line length to 76 characters; this tool wraps lines with a soft line break (=\n) at 73 characters to stay within that limit.

Primarily in email (MIME) to transport text that's mostly ASCII but may contain a few non-ASCII characters, without needing full Base64 encoding of the whole message.

No — encoding happens entirely in your browser.

Related Tools

Related Articles

More from Developer Tools