Hi, All.
I am trying to write some data into a binary file
--------------------------------------
open (FH, ">c.dat" || die "$!");
binmode (FH);
print FH "123.3456";
---------------------------------------
the result I got in c.dat is 123.3456.
but i really want the result in unicode( the strange characters, like in exe files).
any body can help me with this?
thanks first.
kevin
I am trying to write some data into a binary file
--------------------------------------
open (FH, ">c.dat" || die "$!");
binmode (FH);
print FH "123.3456";
---------------------------------------
the result I got in c.dat is 123.3456.
but i really want the result in unicode( the strange characters, like in exe files).
any body can help me with this?
thanks first.
kevin