victormedranop Well-Known Member Licensed User Longtime User Nov 5, 2020 #1 Hi, i made a platform for Security Ankle in my country but now we receive a chinesse new model, is a problem to talk with this guys, the cant tell me witch charset are using, is the a way to discover that ? try with ascii, utf8 but no luck. thanks a lote. Victor
Hi, i made a platform for Security Ankle in my country but now we receive a chinesse new model, is a problem to talk with this guys, the cant tell me witch charset are using, is the a way to discover that ? try with ascii, utf8 but no luck. thanks a lote. Victor
Erel B4X founder Staff member Licensed User Longtime User Nov 5, 2020 #2 AsyncStreams has nothing to do with encoding. It receives bytes and passes them as-is. What are you connecting to? Save the data to a file (File.WriteBytes) and open it with Notepad++. Upvote 0
AsyncStreams has nothing to do with encoding. It receives bytes and passes them as-is. What are you connecting to? Save the data to a file (File.WriteBytes) and open it with Notepad++.
KMatle Expert Licensed User Longtime User Nov 6, 2020 #3 Try it with UTF16 or with (if you use it with windows) a proper codepage for chinese: https://docs.microsoft.com/en-us/windows/win32/intl/code-page-identifiers How do you get the data? Via API or is it your own app? Notepad++ is always helpful Upvote 0
Try it with UTF16 or with (if you use it with windows) a proper codepage for chinese: https://docs.microsoft.com/en-us/windows/win32/intl/code-page-identifiers How do you get the data? Via API or is it your own app? Notepad++ is always helpful