Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
298 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
359 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 ...
5
votes
2answers
197 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 ...
5
votes
2answers
6k 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 ...
4
votes
3answers
573 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
4
votes
5answers
346 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
3answers
367 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 ...
2
votes
3answers
277 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
1answer
335 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 '{'.
2
votes
1answer
81 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 ...
1
vote
1answer
76 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 ...
1
vote
1answer
160 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 = ...
1
vote
2answers
585 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 ...
1
vote
4answers
628 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.
0
votes
2answers
65 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 ...
0
votes
2answers
71 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 ...
0
votes
4answers
791 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.
0
votes
6answers
2k 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 : ...