I iamcrazy New Member Feb 23, 2015 #1 i have not purchased the full verson so I do not have access to any libraries. My question is how to convert a single character to a binary combination. Is it possible without a library? Thanks
i have not purchased the full verson so I do not have access to any libraries. My question is how to convert a single character to a binary combination. Is it possible without a library? Thanks
Erel B4X founder Staff member Licensed User Longtime User Feb 23, 2015 #2 You can convert a string or a single character with: B4X: Dim s As String = "a" Dim b() As Byte = s.GetBytes("UTF8") Upvote 0
You can convert a string or a single character with: B4X: Dim s As String = "a" Dim b() As Byte = s.GetBytes("UTF8")