Re: [BangPypers] converting utf to octal

2010-12-14 Thread Kenneth Gonsalves
On Wed, 2010-12-15 at 01:51 +0530, Sandip Bhattacharya wrote: > Saw this old post just now. > > Kenneth, did you find a solution? yes - I posted it. -- regards Kenneth Gonsalves ___ BangPypers mailing list BangPypers@python.org http://mail.python.org

Re: [BangPypers] converting utf to octal

2010-12-14 Thread Sandip Bhattacharya
On Tue, Nov 23, 2010 at 04:35:39PM +0530, Kenneth Gonsalves wrote: > hi, > > say I have an indic (tamil) string like நான். This is actually > represented by the following: > 0x0ba8,0x0bbe,0x0ba9,0x0bcd. How can I convert the above string into > these characters - or at least into base 10 integers?

Re: [BangPypers] converting utf to octal

2010-11-23 Thread Kenneth Gonsalves
On Tue, 2010-11-23 at 17:36 +0530, JAGANADH G wrote: > On Tue, Nov 23, 2010 at 4:35 PM, Kenneth Gonsalves > wrote: > > > hi, > > > > say I have an indic (tamil) string like நான். This is actually > > represented by the following: > > 0x0ba8,0x0bbe,0x0ba9,0x0bcd. How can I convert the above string

Re: [BangPypers] converting utf to octal

2010-11-23 Thread JAGANADH G
On Tue, Nov 23, 2010 at 4:35 PM, Kenneth Gonsalves wrote: > hi, > > say I have an indic (tamil) string like நான். This is actually > represented by the following: > 0x0ba8,0x0bbe,0x0ba9,0x0bcd. How can I convert the above string into > these characters - or at least into base 10 integers? > -- >

Re: [BangPypers] converting utf to octal

2010-11-23 Thread Kenneth Gonsalves
On Tue, 2010-11-23 at 19:21 +0800, Senthil Kumaran wrote: > On Tue, Nov 23, 2010 at 7:05 PM, Kenneth Gonsalves > wrote: > > say I have an indic (tamil) string like நான். This is actually > > represented by the following: > > 0x0ba8,0x0bbe,0x0ba9,0x0bcd. > > Under which encoding? I am not sure -

Re: [BangPypers] converting utf to octal

2010-11-23 Thread Senthil Kumaran
On Tue, Nov 23, 2010 at 7:05 PM, Kenneth Gonsalves wrote: > say I have an indic (tamil) string like நான். This is actually > represented by the following: > 0x0ba8,0x0bbe,0x0ba9,0x0bcd. Under which encoding? > How can I convert the above string into > these characters - or at least into base 10