forked from mediaburst/.NET-GSM-Encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
A .NET System.Text.Encoding implementation for the GSM character set
License
older/.NET-GSM-Encoding
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
GSM Encoding class for C# ------------------------- Converts characters between the .NET internal Unicode encoding and the GSM03.38 alphabet. Licensed for use under the ISC license, a full copy can be found in License.txt. Sample for converting GSM encoding to UTF-8 ------------------------------------------- string body = "GSM 03.38 Text to convert"; Encoding gsmEnc = new Mediaburst.Text.GSMEncoding(); Encoding utf8Enc = new System.Text.UTF8Encoding(); byte[] gsmBytes = utf8Enc.GetBytes(body); byte[] utf8Bytes = Encoding.Convert(gsmEnc, utf8Enc, gsmBytes); body = utf8Enc.GetString(utf8Bytes);
About
A .NET System.Text.Encoding implementation for the GSM character set
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- C# 100.0%