converting character string to hex string


 
Thread Tools Search this Thread
Top Forums Programming converting character string to hex string
# 1  
Old 09-20-2006
converting character string to hex string

HI

Hi I have a character string which contains some special characters and I need it to display as a hex string.

For example, the sample i/p string: ×¥ïA Å gïÛý and
the o/p should be : D7A5EF4100C5010067EFDBFD


Any pointers or sample code pls.
axes
# 2  
Old 09-20-2006
Code:
str="×¥ïA Å gïÛý ";
printf("%x",str);


Last edited by anbu23; 09-20-2006 at 01:41 PM..
# 3  
Old 09-20-2006
That will not work. It will print the pointer to the string as hex, not the string itself.

How about this:

Code:
{
  const char *str="asdf";
  int n;
  for(n=0; str[n] != '\0'; n++)
    printf("%02x",(unsigned char)str[n]);
}

Given the weird characters in the string you want, you may have encoding problems that make the bytes different while the string looks the same. I can't even copy-paste that string. It messes up my shell.

[edit] Nope, that doesn't work. Your string contains a NULL. Either that or it's unicode... working on it...

Last edited by Corona688; 09-20-2006 at 02:09 PM..
# 4  
Old 09-20-2006
Thanks corona, It works fine.

I have one more doubt regarding sizeof(string).

For ex:- If I have code,

char func(char funcstr[12]){
printf("%d\n",sizeof(funcstr));
}
main() {
char mainstr[12];
func(mainstr);
printf("%d\n",sizeof(mainstr));
}
size of mainstr is giving the array size(i.e. 12),
whereas funcstr is giving the pointer size(i.e. 4),
will it not give the array size as we declared it as array ?

Thanks
axes
# 5  
Old 09-20-2006
Your string is 16-bit unicode. How are you reading it??

Once you've inputted a 16-bit unicode string, you can print it like this:
Code:
#include <stdio.h>
#include <string.h>

int main()
{
  int n;
  unsigned short int ustr[]=
    { 0xD7A5, 0xEF41, 0x00C5, 0x0100, 0x67EF, 0xDBFD, 0x0000};

  for(n=0; ustr[n] != 0x0000; n++)
    printf("%04x",ustr[n]);

  printf("\n");
  return(0);
}

[edit] I'm glad my first example worked but I have not a clue how it managed that feat. Smilie
# 6  
Old 09-20-2006
CODE TAGS FOR CODE PLEASE.

Anyway.

It is giving the array size for the array because it is an array. It is giving the pointer size for the passed array because it is a pointer -- arrays are passed by reference.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Using sed to split hex string

Hi, I'm looking to split the following hex string into rows of four elements. I've tried the following but it doesn't seem to work. How can I tell sed to match based on a pair of number(s) and letter(s), and add a newline every 4 pairs? In addition, I need to add another newline after every... (5 Replies)
Discussion started by: sand1234
5 Replies

2. Shell Programming and Scripting

Find and increment value in string of hex

I have a long string of hex (from ASN.1 data) where I need to find and change a particular hex value only and increment it. The hex pairs either side (84 and a7) of the value to increment will remain constant. i.e. "84 <length> <value_to_increment> a7" starting with 00. So end result: ... (11 Replies)
Discussion started by: securegooner
11 Replies

3. Shell Programming and Scripting

sed searches a character string for a specified delimiter character, and returns a leading or traili

Hi, Anyone can help using SED searches a character string for a specified delimiter character, and returns a leading or trailing space/blank. Text file : "1"|"ExternalClassDEA519CF5"|"Art1" "2"|"ExternalClass563EA516C"|"Art3" "3"|"ExternalClass305ED16B8"|"Art9" ... ... ... (2 Replies)
Discussion started by: fspalero
2 Replies

4. Shell Programming and Scripting

Swapping a string of numbers between higher and lower order values(HEX)

I have this below string in a variable cutString=21222222222222222122222222222222 this string is nothing but hex values depicted as below 21:22:22:22:22:22:22:22:21:22:22:22:22:22:22:22 so what i want to achieve is swap the lower order with higher order values in the... (3 Replies)
Discussion started by: vivek d r
3 Replies

5. Shell Programming and Scripting

String to HEX conversion in UNIX

i have this below string which i need to convert it to HEX. i have already tried it but it showing extra few things on it.. let me show what i have done and what is the output i am getting and what is the desired output the input string is "!\"\"\"\"\"\"\"!\"\"\"\"\"\"\"" which is... (4 Replies)
Discussion started by: vivek d r
4 Replies

6. Shell Programming and Scripting

Converting parts of a string to "Hex"

Hi Guys, writing a small shell script, i need to convert parts of a string to "Hex". The problem is that it is not the full string that needs to be converted. I think it's best to show an example: $astring = "xxxxxx ABC+10+##########+DEF xxxx" This is only an example to show how the... (9 Replies)
Discussion started by: HansHansen
9 Replies

7. Programming

how to use hex escape char with string in C?

I want it to ouput "abcd", but it dosen't. 1 #include<stdio.h> 2 int main() 3 { 4 printf("a\x62cd"); 5 } 6 gcc alarm.c -o alarm alarm.c: In function 'main': alarm.c:4:9: warning: hex escape sequence out of range It seems that the complier joint "cd" as part of... (8 Replies)
Discussion started by: vistastar
8 Replies

8. Programming

Hex string conversion?

Hello all. I need help... How can I cenvert this 42ec93df826c804ea531c56594db453d54daad4b to normal text? What convertor I have to use? Thanks. (12 Replies)
Discussion started by: escudo
12 Replies

9. Shell Programming and Scripting

Match hex value in string (Perl)

I am trying to match a character return from a website so that I can replace it. It is the '...' character (didnt even know it existed initially). The character apparently has the hex value of 2026, but in the script, attempting to substitute regular 3 periods is not working. What am I... (2 Replies)
Discussion started by: Guyverix
2 Replies

10. Programming

After converting the hexstr to Hex and storing the Hex in a char*

Hi All, My main intension of is to convert the Hexstring stored in a char* into hex and then prefixing it with "0x" and suffix it with ',' This has to be done for all the hexstring char* is NULL. Store the result prefixed with "0x" and suffixed with ',' in another char* and pass it to... (1 Reply)
Discussion started by: rvan
1 Replies
Login or Register to Ask a Question