Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I have a quiery that i want to convert the below value into Integer using vb.net

ÒÍö·­Á´¹¶¸²­¹¹²³·

I know that the above value is RMC67-A49682-99237

But i want know that how can i know using vb.net that the value


ÒÍö·­Á´¹¶¸²­¹¹²³· is equals to RMC67-A49682-99237

Can anybody tell me how can i convert the first value into second one.
Posted
Comments
AnnuBhai 25-Jan-13 1:43am    
that value encrypted ????????? or not
The Doer 25-Jan-13 2:57am    
The way you have encrypted from RMC67-A49682-99237 to ÒÍö·­Á´¹¶¸²­¹¹²³·
the same way you suppose to decrypt to get back the original form.
Let us know how you have encrypted to unicode.

1 solution

From that? Probably not.
The first thing you need to do is examine that data in it's rawest form - as bytes rather than as a string.
It would probably help you if you had several values for comparison - it is far to easy to make mistakes when working back from a single example.

Look at the raw data - I'm not even going to start by looking at the data in your post as it has almost certainly be reworked and interpreted by several systems before it gets to me, and you need to look at the original, uncorrupted version.

Then, start looking for correlations - it is possible that it is just a bit-packed cut-down alphabet with 36 characters (A-Z, 0-9), or less to fit it into 5 bits. Without the raw data and a couple of examples, all we (and you) could do is guess.

It would be the most help if you used the specification for the conversion as it is always possible to make mistakes when you work something out.

What is this from?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900