Click here to Skip to main content
15,891,513 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to Convert this string to Readable Text ?

=D8=B3=D8=B1=D9=88=DB=8C=D8=B3 =D8=A7=D8=B4=D8=AA=D8=B1=D8=A7=DA=A9=
=D9=88=DB=8C=D8=AF=DB=8C=D9=88 - =D8=A2=D9=BE=D8=A7=D8=B1=D8=A7=D8=AA =D8=
=AF=D8=A7=D8=AA =DA=A9=D8=A7=D9=85


What I have tried:

This a part of Body in eml file (email body)
Posted
Updated 9-Sep-18 21:55pm
v2
Comments
Richard MacCutchan 10-Sep-18 4:01am    
You need to go back to the person who sent it to you. It is possible that this is an encoding of characters, but there is no way of knowing which alphabet (if any) it started with.
Richard Deeming 11-Sep-18 13:26pm    
That looks like a quoted printable[^] encoding, but you'd need to check the headers to be sure.

1 solution

An eml file format is used by many email clients. One eml file = one e-mail message. File format specification has been defined in RFC 822 then in RFC 2822[^].
Quote:
The body of a message is simply lines of US-ASCII characters. The
only two limitations on the body are as follows:
- CR and LF MUST only occur together as CRLF; they MUST NOT appear
independently in the body.
- Lines of characters in the body MUST be limited to 998 characters,
and SHOULD be limited to 78 characters, excluding the CRLF.
Note: As was stated earlier, there are other standards documents,
specifically the MIME documents [RFC2045, RFC2046, RFC2048, RFC2049]
that extend this standard to allow for different sorts of message
bodies. Again, these mechanisms are beyond the scope of this
document


I have no idea how to "convert" such of text into readable form, because it's non-standard eml message body.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900