The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
25 views

Determine all ISO 15924 script codes in JavaScript string

I'm looking for an efficient way to take a JavaScript string and return all of the scripts which occur in that string. Full UTF-16 including the "astral" plane / non-BMP characters which require ...
3
votes
1answer
120 views

How to verify whether an instance of CharSequence is a sequence of Unicode scalar values?

I have an instance of java.lang.CharSequence. I need to determine whether this instance is a sequence of Unicode scalar values (that is, whether the instance is in UTF-16 encoding form). Despite the ...
0
votes
1answer
65 views

Unicode Surrogate Pairs in IOS?

I have a surrogate pair, example below: \ud83d\ude04 I want to know how to get the corresponding value value like "1F604" Any sample code ? Any help will be appreciable ?
5
votes
2answers
194 views

How do I create a string with a surrogate pair inside of it?

I saw this post on Jon Skeet's blog where he talks about string reversing. I wanted to try the example he showed myself, but it seems to work... which leads me to believe that I have no idea how to ...
0
votes
1answer
64 views

Retrieving SurrogatePairs from MS Word Documents

We have written and application that will open up Microsoft Word Documents, read all of the text inside, and then send out that data to an external system for processing. This was working fine in the ...
5
votes
2answers
222 views

Python: getting correct string length when it contains surrogate pairs

Consider the following exchange on IPython: In [1]: s = u'華袞與緼𦅷同歸' In [2]: len(s) Out[2]: 8 The correct output should have been 7, but because the fifth of these seven Chinese characters has a ...
5
votes
4answers
370 views

How to remove surrogate characters in Java?

I am facing a situation where i get Surrogate characters in text that i am saving to MySql 5.1. As the UTF-16 is not supported in this, I want to remove these surrogate pairs manually by a java ...
2
votes
1answer
97 views

Simplest way to extract first Unicode codepoint of an NSString (outside the BMP)?

For historical reasons, Cocoa's Unicode implementation is 16-bit: it handles Unicode characters above 0xFFFF via "surrogate pairs". This means that the following code is not going to work: NSString ...
10
votes
3answers
297 views

Issue with surrogate unicode characters in F#

I'm working with strings, which could contain surrogate unicode characters (non-BMP, 4 bytes per character). When I use "\Uxxxxxxxxv" format to specify surrogate character in F# - for some ...
2
votes
3answers
211 views

How to map bytes from 128 to 255 to the equivalent UTF16-LE surrogate pairs

I'm trying to achieve this: I have a PDF byte[] in java web service that I must send as a base64 string to a .NET client that does this to reconstruct the file. Encoding.Convert(Encoding.Unicode, ...
1
vote
1answer
447 views

How can I store UTF-16 characters in a Postgres database?

I am trying to store some text (e.g. č) in a Postgres database, however when retrieving this value, it appears on screen as ?. I'm not sure why it does this, I was under the impression that it was a ...
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 ...
17
votes
3answers
2k views

JavaScript strings outside of the BMP

According to JavaScript: the Good Parts: JavaScript was built at a time when Unicode was a 16-bit character set, so all characters in JavaScript are 16 bits wide. This leads me to believe that ...
1
vote
2answers
1k views

Output UTF-16? A little stuck

I have some UTF-16 encoded characters in their surrogate pair form. I want to output those surrogate pairs as characters on the screen. Does anyone know how this is possible?
0
votes
1answer
300 views

Unicode Surrogate Pairs question

Ok so I have a surrogate pair, example below: \u306f\u30fc Is there a function I can use to print the character to the screen? Regards,
8
votes
3answers
4k views

Java Can't Open a File with Surrogate Unicode Values in the Filename?

I'm dealing with code that does various IO operations with files, and I want to make it able to deal with international filenames. I'm working on a Mac with Java 1.5, and if a filename contains ...
6
votes
2answers
2k views

Handling Unicode surrogate values in Java strings

Consider the following code: byte aBytes[] = { (byte)0xff,0x01,0,0, (byte)0xd9,(byte)0x65, (byte)0x03,(byte)0x04, (byte)0x05, (byte)0x06, (byte)0x07, ...
8
votes
7answers
2k views

Why UTF-32 instead of UTF-16 if we have surrogate pairs?

If I understand correctly, UTF-32 can handle every character in the universe. So can UTF-16, through the use of surrogate pairs. So is there any good reason to use UTF-32 instead of UTF-16?