Cesar David Rodas Maldonado <[EMAIL PROTECTED]> wrote:
How can i know if a given text is UTF8 or ascii? and how can i convert between ascii to UTF8?
If by ASCII you mean a set of 128 characters representable in 7 bits, then UTF8 is a superset of ASCII. Any ASCII text is also a UTF8 text, and any UTF8 text consisting entirely of 7-bit characters is also ASCII text. No conversion required.
Igor Tandetnik