Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
[CODE]//UCS-2 INPUT string hex = textBox1.Text.Replace(" ", ""); //UCS-2 BYTES TO DECIMAL VALUES int b3 = Convert.ToInt32("00" + hex[4] + hex[5], 16) - 128; int b2 = (Convert.ToInt32("00" + hex[2] + hex[3], 16)- 128) * 64; int b1 = (Convert.ToInt32("00" + hex[0] + hex[1], 16)- 224) * 4096; //COUNT ALL …
The End.
reconx86