Good, I've been trying for several days to pass a chain in base64 to something worthy, I explain that I've tried to see what solution I can give you.
First of all I use PHP, the string is encoded in C # with Convert.Tobase64String()
"AAECAQcGqga5sgKsuwLTwwKZxwKixwIMS5EDogSRBv8HsgiCrQLSrgL+vAKhwgK8wwLKwwIA"
by base64_decode()
"�����������K�������Ү��������"
Thought is so ASCII characters I perform the following procedure
$a = base64_decode($base64);
$b = array();
foreach(str_split($a) as $c)
$b[] = bindec(sprintf("%08b", ord($c)));
An array with numbers comes out but should correspond to an id in a list. Thing they do not.
The code in C # I can not apply for confidentiality reasons, but what I can say is that the content is a Byte array.