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
- 1Paste your text
- 2Click Process
- 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
Base64 Encoder
Encode any text into Base64 using the browser-native btoa() function, with full Unicode/UTF-8 support.
Base64 Decoder
Decode Base64 back to readable text using the browser-native atob() function, with full Unicode/UTF-8 support.
URL Encoder
Percent-encode text for safe use in URLs, or decode it back, using the native encodeURIComponent/decodeURIComponent functions.
URL Decoder
Decode percent-encoded URL text back to its original characters using the native decodeURIComponent function.