Convert special charachter ^C to new line

Hi,

I have a file, which contains ^C or ^A characters from mainfrme system, it's dec 192 or octal 300 hex C0. I want to replace this character with new line.

I used commands, but it didn't worked.

 
tr '\o300' '\n' <t >t2
#or 
tr '\xC0' '\n' <t  > t2

Can somebody help me to do it?

[code]
-----------------------------------------------------------------------
VV100109000004000 CSS1001080001735 01/09/2010^A{1:F01
S33AXXX1653006546}{2:O9500007100109IRVTUS3NCXXX34498288201001090007N}{3:{10
8:CSS1001080001735}}{4:
:20:CSS1001080001735
:25:8900600268 :28C:5/1
:60F:C100108USD0,
:61:100108CD1039000000,NTRF021000018//DSP1001080119200
B/O,319916
:61:100108CD730407833,34NTRF5803563//FDF1001080038900
B/O:
:61:100108DD1039000000,S900100108026962//F2S1001087876400
O/B:ABIC/S33
:61:100108DD730407833,34NTRFDSP1001080018200//DSP1001080018200
BEN,CUS466087 OIS
:62F:C100108USD0,
:64:C100108USD0,
-}{5:{CHK:CE54EED6A6B2}}[b][COLOR=darkred]^C
ZZ100109000005000 ZZ100109000005001 01/09/2010 00:09:01:23^A{1:F01
30001109XXXX0000000010}{2:I21030003012XXXXN}{4:
:20:FX1742602
:30:100113
:21:1742602

Assuming the character is what you state and that this is a normal text file, your syntax for "tr" needs adjustment.

tr "\300" "\n" <t >t2

Thank you it works.