Sirish Kumar

192
reputation
91 views

Registered User

name Sirish Kumar
member for 1 year
seen 13 hours ago
website
location Bangalore
age
Software Developer and interested in Web
Dec
8
comment Convert UTF-8 octets to unicode code points
@Artyom: I want to convert utf-8 to unicode code points. SO how to get unicode code points instead of python unicode string
Dec
8
comment Convert UTF-8 octets to unicode code points
I got the values from a conversion function which converts from our internal encoding to utf-8 and vice versa.
Dec
8
asked Convert UTF-8 octets to unicode code points
Nov
27
asked Split UTF-8 encoded string got from unichr
Nov
20
awarded  Nice Answer
Nov
19
comment Character decoding Conversion Function Implementation
This will hold good for one direction but what about converting characters in other direction, they are not in sequence.
Nov
17
awarded  Commentator
Nov
17
comment Character decoding Conversion Function Implementation
I think hash representation consumes more memory than simple look table ( one for UTF-8 to our encoding and other for reverse)?
Nov
17
comment Character decoding Conversion Function Implementation
Our internal encoding format has only 256 characters, which are mapped to 256 UTF-8 code representations. From the solutions given below I will go for array representation which maps our local encoding to UTF-8 and one more array for UTF-8 to our local encoding
Nov
17
asked Character decoding Conversion Function Implementation
Nov
16
answered How to convert string from one charset to another in C++?
Nov
16
awarded  Scholar
Nov
16
comment Why there are duplicate characters in unicode
What is reason to have a similar looking character in two languages with different code points( I want to know about this as I have to develop a conversion utility between different encodings among which one is own companies own proprietary encoding format)
Nov
16
asked Why there are duplicate characters in unicode
Nov
15
awarded  Critic
Sep
28
awarded  Popular Question
Sep
16
awarded  Yearling
Aug
25
answered What are your favorite debugging techniques in C++?
Aug
4
awarded  Popular Question
Jul
24
comment Iterative find/replace from a list of tuples in Python
May be you can replace r assignment with r = re.compile('|'.join(re.split(re.compile(', +'),x)))