Tagged Questions
2
votes
2answers
10k views
vb.net - Encode string to UTF-8
I've made a class to encode a string
Public Class UTF8
Public Shared Function encode(ByVal str As String)
Dim utf8Encoding As New System.Text.UTF8Encoding
Dim encodedString() As ...