Tagged Questions
The surrogate-pairs tag has no wiki summary.
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 ...
9
votes
1answer
491 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 ...
7
votes
3answers
2k 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 ...
7
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?
6
votes
2answers
1k 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,
...
2
votes
3answers
74 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
49 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 ...
1
vote
2answers
418 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
171 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,