replace delimiter : with '\001' in unix data file

HI

can any one tell me how to replace a delimiter : with another delimiter '\001' it is a non printable octal character.

thanks in adv

spandu

actually this need to done on a unix data file

look into 'man tr'

tr -s ':' '\001' <somefile >newfile

thanks a lot