Can anyone let me know What is encoding format of attached screen shot?

时间:2017-12-18 07:53:37

标签: php string email encoding

I am forwarding email from server to php file with script. when I get any special chars, I have string in format which is given in screen shot.

I am doing all in PHP.

Thanks in advance.enter image description here

2 个答案:

答案 0 :(得分:3)

That's UTF-8 encoded as Quoted-Printable.

答案 1 :(得分:0)

You can use <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Height="237px" Width="632px" onrowdatabound="GridView1_RowDataBound"> <Columns> <asp:TemplateField FooterText="tables" HeaderText="tables"> <EditItemTemplate> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </EditItemTemplate> </asp:TemplateField> <asp:TemplateField FooterText="columns" HeaderText="columns"> <ItemTemplate> <asp:DropDownList ID="ddlcolumns" runat="server" Height="16px" Width="181px"> </asp:DropDownList> </ItemTemplate> </asp:TemplateField> <asp:TemplateField FooterText="vms-columns" HeaderText="vms-columns"> <ItemTemplate> <asp:DropDownList ID="ddl_vms_columns" runat="server" Height="20px" Width="153px"> </asp:DropDownList> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> function from php.

Read more about this here

You can also retrieve data from a file to check the encoding. (like your stored emails).