D Dey Active Member Licensed User Longtime User Apr 4, 2016 #1 Special characters conversion B4A asc("˜") = 732! Vb.net asc("˜") = 152! my encrypt decrypt vb.net B4A how do I fix?
Special characters conversion B4A asc("˜") = 732! Vb.net asc("˜") = 152! my encrypt decrypt vb.net B4A how do I fix?
Erel B4X founder Staff member Licensed User Longtime User Apr 4, 2016 #2 This is the unicode codepoint of this character: http://unicodelookup.com/#732/1 Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Apr 4, 2016 #3 You can get the value that you are interested in by converting the string to an array of bytes with Windows-1252 encoding: B4X: Dim b() As Byte = s.GetBytes("Windows-1252") Upvote 0
You can get the value that you are interested in by converting the string to an array of bytes with Windows-1252 encoding: B4X: Dim b() As Byte = s.GetBytes("Windows-1252")