I have some units as "m/s". But, in dotnet I get the value as "m%2Fs". How can I decode and encode it back? I tried using the following but didn't work.
HttpUtility.HtmlDecode("m%2Fs");
HttpUtility.HtmlEncode("m/s");
System.Convert.ToBase64String("m/s");
System.Convert.FromBase64String("m%2Fs");