इस टूल में कोई समस्या है?

«उद्धृत मुद्रण योग्य एनकोडर ऑनलाइन» के बारे में

यह टूल RFC 2045 में परिभाषित Quoted-Printable एनकोडिंग का उपयोग करके टेक्स्ट को एनकोड करता है — एक प्रारूप जो केवल प्रिंट करने योग्य ASCII कैरेक्टरों का उपयोग करके 8-बिट डेटा का प्रतिनिधित्व करता है।

Quoted-Printable को 8-बिट टेक्स्ट सामग्री को 7-बिट-केवल विरासत ईमेल परिवहन के माध्यम से स्थानांतरित करने के लिए डिज़ाइन किया गया था।

मैन्युअल रूप से ईमेल बनाते समय, MIME संदेशों को डीबग करते समय इसका उपयोग करें।

इस टूल का उपयोग कैसे करें

How to encode text as Quoted-Printable for email transport

  1. Paste the text

    Drop the source string into the "Text" field. The tool encodes any byte outside the printable-ASCII range (`!`–`~` minus `=`) using `=XX` escapes, where `XX` is the two-digit upper-case hex byte value.

  2. Press Run

    Result returns a single `encoded` field. Examples: `café` → `caf=C3=A9`; literal `=` → `=3D`. Lines longer than 76 characters get a soft line break `=\r\n` inserted; mail transfer agents preserve those across hops.

  3. When QP makes sense

    Quoted-Printable is used in email headers and bodies (`Content-Transfer-Encoding: quoted-printable`) when the content is mostly ASCII with the occasional non-ASCII character. For binary data, base64 is more efficient.

  4. Watch the trailing whitespace

    Tabs and spaces at the end of a line MUST be encoded (`=20`, `=09`) — otherwise some mail relays strip them. The encoder handles this for you, but if you're hand-editing, don't trim trailing whitespace from QP-encoded content.