The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
36 views

Creating a UTF-8 string from hexadecimal code

In C++, it's possible create a UTF-8 string using this kind of notation: "\uD840\uDC50". However this doesn't work in PHP. Is there a similar notation? If not, is there any built-in way to create a ...
0
votes
1answer
73 views

Convert codepoint to wchar_t in C [duplicate]

If I know the unicode codepoint of this 2 chinese character 你好 in str How can I convert this char * str codepoint to chinese character and assign it to wchar_t * wstr ? char * str = "4F60 597D"; ...
0
votes
1answer
125 views

Mysql convert unicode code point to utf-8 character

I was using CHAR(code_point USING ucs2) to convert a unicode code point to utf-8 character but it's giving me unexpected results above 0x00ff code point. It gives me the the character Ā (code point ...
1
vote
2answers
72 views

How to establish the codepoint of encoded characters?

Given a stream of bytes (that represent characters) and the encoding of the stream, how would I obtain the code points of the characters? InputStreamReader r = new InputStreamReader(bla, ...
6
votes
3answers
1k views

What exactly does the String.codePointAt do?

Recently I ran into codePointAt method of String in Java. I found also a few other codePoint methods: codePointBefore, codePointCount etc. They definitely have something to do with Unicode but I do ...
0
votes
2answers
154 views

How to save Unicode codepoint as character, not codepoint in Python

Is there a way to save a Unicode string into JSON that allows for Unicode codepoints to be replaced with their actual characters? For instance, having a dict like this ported into JSON...: ...
1
vote
3answers
124 views

How to encode a long string of hex values in unicode easily in python

I have hex code point values for a long string. For a short one, following is fine. msg = unichr(0x062A) + unichr(0x0627) + unichr(0x0628) print msg However, since unichr's alternate api unicode() ...
2
votes
2answers
429 views

How make QChar.unicode() report the utf-16 representation of combined characters?

I'm trying to write a codec for Code page 437. My plan was to just pass the ASCII characters through and map the remaining 128 characters in a table, using the utf-16 value as key. For some combined ...
1
vote
0answers
45 views

How to convert utf8 string to unicode code point in PHP? [duplicate]

Possible Duplicate: UTF-8 to Unicode Code Points UTF-8 strings are to be converted to Unicode code points. How to convert utf8 string to its corresponding unicode code point?
0
votes
1answer
349 views

How do I split a unicode string on code points in python? (eg. \u00B7 or \u2022)?

I tried everything I could think of... 1. unicode_obj.split('\u2022') 2. re.split(r'\u2022', unicode_object) 3. re.split(r'(?iu)\u2022', unicode_object) Nothing worked The problem is that I want ...
1
vote
2answers
239 views

What is exactly an overlong form/encoding?

Reading the Wikipedia article on UTF-8, I've been wondering about the term overlong. This term is used various times but the article doesn't provide a definition or reference for its meaning. I would ...
3
votes
1answer
272 views

Retrieve Unicode code points > U+FFFF from QChar

I have an application that is supposed to deal with all kinds of characters and at some point display information about them. I use Qt and its inherent Unicode support in QChar, QString etc. Now I ...
3
votes
1answer
1k views

How to convert a string representation of unicode hex “0x20000” to the int code point 0x20000 in Java

I have a list of String representations of unicode hex values such as "0x20000" (𠀀) and "0x00F8" (ø) that I need to get the int code point of so that I can use functions such as: char[] chars = ...
2
votes
3answers
1k views

Java unicode where to find example N-byte unicode characters

I'm looking for sample 1-byte, 2-byte, 3-byte, 4-byte, 5-byte, and 6-byte unicode characters. Any links to some sort of reference of all the different unicode characters out there and how big they are ...
1
vote
2answers
2k views

java string unicode code point convert to character

Ok, so I feel like this question for asked many times but I am not able to find an answer. I am comparing two different files that were generated by two different programs. Of course both programs are ...
6
votes
2answers
1k views

What are the consequences of storing a C# string (UTF-16) in a SQL Server nvarchar (UCS-2) column?

It seems that SQL Server uses Unicode UCS-2, a 2-byte fixed-length character encoding, for nchar/nvarchar fields. Meanwhile, C# uses Unicode UTF-16 encoding for its strings (note: Some people don't ...
33
votes
2answers
2k views

What are the most common non-BMP Unicode characters in actual use?

In your experience which Unicode characters, codepoints, ranges outside the BMP (Basic Multilingual Plane) are the most common so far? These are the ones which require 4 bytes in UTF-8 or surrogates ...
5
votes
2answers
369 views

Writing a better natural sort (than mine)

I added an answer to this question here: Sorting List<String> in C# which calls for a natural sort order, one that handles embedded numbers. My implementation, however, is naive, and in lieu of ...
4
votes
3answers
2k views

Convert UTF8 string into numeric values in Perl

For example, my $str = '中國c'; # Chinese language of china I want to print out the numeric values 20013,22283,99
2
votes
3answers
559 views

How to convert an accented character in an unicode string to its unicode character code using Python?

Just wonder how to convert a unicode string like u'é' to its unicode character code u'\xe9'? Thank you for your help.
2
votes
4answers
2k views

How can I convert a Unicode codepoint (\uXXXX) into a character in Perl?

I have some unicode codepoints (\u5315\u4e03\u58ec\u4e8c\u4e0a\u53b6\u4e4b), which I have to convert into actual characters they represent. What's the simplest way to do so? Thank you.
2
votes
1answer
590 views

Haskell: convert unicode integer to actual unicode character

Suppose that my Haskell function is given an input, which is supposed to be the number of a unicode code point. How can one convert this to the corresponding character? Example: 123 to '{'.
1
vote
4answers
1k views

How to find if a character belongs to a particular codepage using c++ or calling winapi

How can we find if a character belongs to a particular codepage? or How can we determine whether a charcter fits into currently active IME for an application.
4
votes
5answers
467 views

Why are there duplicate characters in Unicode?

I can see some duplicate characters in Unicode. For example, the character 'C' can be represented by the code points U+0043 and U+0421. Why is this so?
2
votes
1answer
124 views

How does one allow a subset of UNICODE codepoints in input validation?

I am creating a service that could "go international" to non-English speaking markets. I do not want to restrict a username to the ASCII range of characters but would like to allow a user to specify ...
7
votes
3answers
10k views

How to output unicode string to RTF (using C#)

I'm trying to output unicode string into RTF format. (using c# and winforms) From wikipedia: If a Unicode escape is required, the control word \u is used, followed by a 16-bit signed decimal ...
1
vote
5answers
3k views

What do these Unicode characters (codepoints) mean in this regex?

I have the following regular expression : I figured out most of the part which is as follows : ...