views:

36

answers:

1

Are there test tools available to test if a webservice can handle unicode utf-8 encoded posts? How do I generate utf-8 encoded data?

A: 

The sad-but-true answer is that there is no way to know what encoding some program expects if they don't either document it, or provide encoding metadata in whatever protocol you're using.

As for generating utf-8, well, that depends on what programming language you're using.

Jonathan Feinberg