vote up 0 vote down star
1

I have a string that is:

!"#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]\^_`abcdefghijklmnopqrstuvwxyz{|}~¡¢£¤¥¦§¨©ª« ®¯°±²³´µ¶•¸¹º»¼½¾¿ÀÁÂÃÄÅàáâäèçéêëìíîïôö÷òóõùúý

I post that to service and used Htmlencode, then I get a result:

!#$%&'()* ,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~����������� ���������•������������������������������������

it isn't result that i need,how i get original string? thanks!

flag

50% accept rate
HTML encoding would of course escape those special characters. If you don't want it HTML encoded, well, don't HTML encode the string in the first place. – Ed Swangren Feb 17 at 3:02
@Swangren, I believe he means the issue with improper binary encoding. Perhaps the function he is using is not Unicode safe? (I don't know ASP.NET so I cannot help.) – strager Feb 17 at 3:08
I think he just wants to get the string back into its original form. But the question's not very clear so I could be wrong. – codeflunky Feb 17 at 3:10
Correct me if I'm wrong, but check the end of the strings. There's a lot missing from the HTML encoded string, which means it wasn't encoded correctly... – lc Feb 17 at 3:12
@lc Good point. Tom's suggestion might be best. Encode and decode as Base 64. – codeflunky Feb 17 at 3:15
show 1 more comment

2 Answers

vote up 1 vote down

I believe this is what you're looking for:

!"#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]\\^_`abcdefghijklmnopqrstuvwxyz{|}~¡¢£¤¥¦§¨©ª«®¯°±²³´µ¶•¸¹º»¼½¾¿ÀÁÂÃÄÅàáâäèçéêëìíîïôö÷òóõùúý

You just need to use a better html entity/encoding library or tool. The one I used to generate this is from Ruby - I used the HTML Entities library. The code I wrote to do this follows. I had to put your text in input.txt to preserve Unicode (there was an EOF character in the string), but it worked great.

require 'rubygems'
require 'htmlentities'

str = File.read('input.txt')

coder = HTMLEntities.new
puts coder.encode(str, :named)
link|flag
vote up 4 vote down

Your string is not ASCII, so you are either using a string to represent binary data, or you're not maintaining awareness of multi-byte encoding. In any case, the simplest way to deal with any Internet-based technology (HTTP, SMTP, POP, IMAP) is to encode it as 7-bit clean. One common way is to base64-encode your data, send it across the wire, then base64-decode it before trying to process it.

link|flag
Not sure why so many +1 votes here - this answer seems irrelevant to the question, which obviously deals with web programming ("Htmlencode" in addition to the asp.net tag). You cant base64 encode strings to display to users in a web page. (No offense, Tom.) But maybe I'm wrong... – wuputah Feb 19 at 23:45
@wupatah - Yes, you're wrong. The OP's question is explicitly about posting binary data, not about displaying data to users. This answer is relevant to how HTTP works. – Tom Feb 20 at 3:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.