UTF-16 is a character encoding that represents Unicode code points using either 2 or 4 bytes per character.

learn more… | top users | synonyms

0
votes
1answer
29 views

encode string as utf-16 to base64 in javascript

I'm struggling to find any resources on this online, which is concerning. I've been reading about UCS-2 and UTF-16 woes, but I can't find a solution. I need to get a value from an input: var val = ...
-2
votes
0answers
21 views

How to convert string into UTF-16 [closed]

Is there any idea to convert the local message to UTF-16 ? I meant hindi, punjabi, tamil, telugu messages need to convert into UTF-16.
0
votes
3answers
60 views

LInux shell: conditional conversion of character encoding, multiple text files

The situation: I have a bunch of text files (.csv, to be precise), around 20000 that differ in character encoding: file -i *.csv gives me charset=us-ascii for most, but some are utf-16le. The goal: I ...
0
votes
1answer
20 views

Read UTF-16 file with Javascript

I have a UTF-16 encoded file $ file myFile.csv myFile.csv: Little-endian UTF-16 Unicode text, with CRLF line terminators But when I open it with JavaScript using the following code var http = new ...
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 ...
0
votes
0answers
52 views

Encoding correctly CSV files for PHPexcel

I have a Json, decode it, write it in a CSV file with PHP, convert the CSV to .xls with the aid of PHPexcel The goal is to export from a JSON into an excel file correctly. I am having trouble with ...
0
votes
2answers
82 views

Convert UTF-16 numbers to UTF-8?

I have a iPad app where the user enters a phone number in a text field. Sometimes the phone number is entered in UTF-16 (Japanese sometimes enter their phone numbers this way), but most of the time ...
0
votes
1answer
50 views

Java How to convert string to UTF-16BE from request.getParameter() function?

I am now using the following code but it doesn't performs well. Only few words can be convert. public String convert(String big5) throws java.io.UnsupportedEncodingException { byte[] tmp = ...
0
votes
1answer
32 views

How to tell if a UTF-8 file has asian characteres?

Question: Is there a simple way to discover if a given UTF file has or does not have not Asian characters? Would be great if that works with both UTF-8 and UTF-16. Better yet if done with ruby instead ...
0
votes
2answers
33 views

Detect UTF-16 support, and replace with images otherwise

As part of an HUD I'm designing, I'd like to use this symbol: 🏥 Since my site serves files in Windows-1252, any characters outside the 0-255 range are represented as &#x____;, with ...
0
votes
0answers
28 views

CFStringRef from char* without providing encoding type

I have a C string: unsigned char* contents = readInFile(path); //sting bytes in some unknown NSStringEncoding encoding. I want to know the current NSStringEncoding value of contents. I want to do ...
0
votes
1answer
33 views

how to tell if a wchar_t has a surrogate (UTF-16)?

I've seen a few other posts on this issue but was unable to find any details on how to determine programatically if a codepoint uses more than one 2-byte (on Windows) wchar_t. An example: const ...
3
votes
2answers
164 views

Prevent XSLT transform from converting utf-8 XML into utf-16?

In Delphi XE2, I'm doing a xslt transform on a received XML file to remove all namespace information. Problem: It changes <?xml version="1.0" encoding="utf-8"?> into <?xml version="1.0" ...
0
votes
1answer
23 views

Loading a UTF-16 image into memory

I am trying to load an ID3 image tag that has been saved in UTF-16 JFIF format. The library I am using (Juce) fails to parse the image, as it assumes that the data is in a raw binary format. The ...
44
votes
4answers
1k views

Java Unicode String length

I am trying hard to get the count of unicode string and tried various options. Looks like a small problem but struck in a big way. Here I am trying to get the length of the string str1. I am getting ...
0
votes
1answer
42 views

encoding in vim all messed up

I have tex file that used to work in Vim but now I have to run :e ++enc=utf16 /path/to/file.tex to view the file correctly. If I do :write ++enc=utf-8 /path/to/file.tex, the file is in Chinese ...
0
votes
1answer
108 views

convert string with UTF-16 and UTF-8 text to UTF-8

I read many posts on how to convert UTF-16 from/to UTF-8 but none advise what to do if I have both. I'm trying to insert an email body text that has UTF-16 and UTF-8 characters, using PHP, into SQL ...
1
vote
2answers
93 views

Portable literal strings in C source files

Ok, I have this: AllocConsole(); SetConsoleOutputCP(CP_UTF8); HANDLE consoleHandle = GetStdHandle(STD_OUTPUT_HANDLE); WriteConsoleA(consoleHandle, "aΕλληνικά\n", 10, NULL, NULL); ...
2
votes
1answer
92 views

how to change the encoding of a JSON-file in javascript

I've used flash CS6 to export an animation to a spritesheet. This gives me 2 files: a png and a json file. this is a simplified version of the json: {"frames": { "movieclip 10000": { ...
6
votes
5answers
150 views

Convert Short Array to String C#

Is it possible to convert short array to string, then show the text? short[] a = new short[] {0x33, 0x65, 0x66, 0xE62, 0xE63}; There are utf16 (thai characters) contains in the array. How can it ...
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 ...
3
votes
2answers
227 views

How to read utf16 text file to string in golang?

I can read the file to bytes array but when I convert it to string it treat the utf16 bytes as ascii How to convert it correctly? package main import ("fmt" "os" "bufio" ) func main(){ // ...
0
votes
1answer
59 views

pyPdf: illegal UTF-16 surrogate

I have a pdf file that breaks pyPdf: http://tovotu.de/tests/test.pdf This is the sample script: from pyPdf import PdfFileWriter, PdfFileReader outputPdf = PdfFileWriter() inpdf = ...
3
votes
2answers
81 views

Which Languages Does UTF-8 Not Support?

I'm working on internationalizing one of my programs for work. I'm trying to use foresight to avoid possible issues or redoing the process down the road. I see references for UTF-8, UTF-16 and ...
0
votes
1answer
68 views

UTF 16 code for apostrophe showing as a question mark

In my jsp file that is deployed inside a portal server, Ineed to display a special character (apostrophe). This character will be read from a properties file. So I dig up the UTF-16 code for ...
-1
votes
1answer
53 views

UTF16/32 Test Case (Need Negative Test Case)

I want/need a test case for testing/breaking conversions between UTF-32 and UTF-16. For UTF-8 and UTF-16, I generally use the 'Chinese Bone' test: 0xE9 0xAA 0xA8 (UTF8) and 0x9AA8 (UTF16). Does ...
3
votes
1answer
173 views

Duplicate Windows Cryptographic Service Provider results in Python w/ Pycrypto

Edits and Updates 3/24/2013: My output hash from Python is now matching the hash from c++ after converting to utf-16 and stoping before hitting any 'e' or 'm' bytes. However the decrypted results do ...
1
vote
2answers
236 views

Create UTF-16 string from char*

So I have standard C string: char* name = "Jakub"; And I want to convert it to UTF-16. I figured out, that UTF-16 will be twice as long - one character takes two chars. So I create another string: ...
1
vote
0answers
88 views

How can I convert cyrillic script from uft-8 to utf-16? [closed]

I'm reading UTF-8 text from db and I convert it to UTF-16 with the following code: public string transformString(string str) { byte[] bytes = Encoding.GetEncoding(0).GetBytes(str); str = ...
1
vote
1answer
63 views

Ruby: Sub is not substituting my string after reading file / Encoding wrong?

I am completely new to programming and worked through some ruby tutorials in the last weeks. I need a program to replace a few words in about 600 files. At the moment I am stuck at using sub and gsub ...
0
votes
2answers
70 views

Parsing failing with LXML Xpath using utf-16

I am parsing the following page: http://www.amazon.de/product-reviews/B004K1K172 Using lxml based etree for parsing. Content variable containing the entire page content Code: myparser = ...
-1
votes
1answer
198 views

How to generate a valid XML file using UTF-16 encoding with PHP

I am trying to generate an XML file in a UTF-16 encoding with PHP but there is a problem when I open the generated file. I use DOMDocument to create the file. With a UTF-8 encoding, no problem. When ...
1
vote
2answers
110 views

Java safeguards for when UTF-16 doesn't cut it

My understanding is that Java uses UTF-16 by default (for String and char and possibly other types) and that UTF-16 is a major superset of most character encodings on the planet (though, I could be ...
0
votes
1answer
144 views

How to force UTF-16 while reading/writing in Java?

I see that you can specify UTF-16 as the charset via Charset.forName("UTF-16"), and that you can create a new UTF-16 decoder via Charset.forName("UTF-16").newDecoder(), but I only see the ability to ...
3
votes
2answers
170 views

Why does .net uses the UTF16 encoding for string , but uses utf8 as default for saving files?

From here Essentially, string uses the UTF-16 character encoding form But when saving vs StreamWriter : This constructor creates a StreamWriter with UTF-8 encoding without a Byte-Order ...
1
vote
1answer
133 views

UTF-8 to UTF16 Parsing

I have an XML that is UTF-8 and have some special characters in Chinese, I need to parse this xml. DocumentBuilderFactory factory = DocumentBuilderFactory .newInstance(); ...
1
vote
1answer
46 views

How to handle UTF16 warning in Perl Mechanize call

I get error while making mechanize call to websites having utf16 characters using mechanize in perl. It shows me this warning Parsing of undecoded UTF-16 at /usr/local/share/perl5/LWP/UserAgent.pm ...
0
votes
2answers
158 views

mySQL VARCHAR(256) + mySQL INT = how many bytes?

CREATE SCHEMA IF NOT EXISTS `utftest` DEFAULT CHARACTER SET utf16; CREATE TABLE IF NOT EXISTS `metadata_labels` (`metadata_id` INT NOT NULL , `label` VARCHAR(256) NOT NULL , PRIMARY KEY ...
0
votes
0answers
54 views

Python 3 - upon writing to UTF16 BE file, becomes converted to LE

Using Python 3.3 (Windows 8), I am reading from an UTF-16-BE file: a hex editor shows BOM present, 0xFEFF when inspecting in Big Endian mode. Notepad++ reports encoding as UCS-2 Big Endian. After ...
0
votes
4answers
63 views

working with UTF-8 encoded text

I have a problem. I need to find some utf-8 characters from my text file and output them, but it doens't output the letters, instead it outputs "?", questionmarks... ini_set( 'default_charset', ...
0
votes
1answer
91 views

How to remove broken characters present in ISO encoded XML file

when I tried to convert xml file with encoding of UTF-16 to ISO-8859-1, I am seeing broken characters like Â. Can you please suggest some solution to remove the broken characters and finally I want ...
0
votes
1answer
397 views

UTF-16 to UTF-8 conversion in JavaScript

I have Base64 encoded data that is in UTF-16 I am trying to decode the data but most libraries only support UTF-8. I believe I have to drop the null bites but I am unsure how. Currently I am using ...
0
votes
2answers
233 views

Decode Unicode to character in javascript

I have the following unicode sequence: d76cb9dd0020b370b2c8c758 I tried randomly in non-English character (for this experiment, I tried korean languange) as the original of above unicode ...
6
votes
1answer
249 views

Send an SMS message (UTF-16) with an unknown character replaced by a “replacement character” in Android

I have a problem with sending SMS messages. I created a string with characters like "\uFDE8" (it's 65000). When I convert it back, I get 65000. It looks OK. But when I send an SMS with this string ...
0
votes
2answers
444 views

Strange unicode characters when reading in file in node.js app

I am attempting to write a node app that reads in a set of files, splits them into lines, and puts the lines into an array. Pretty simple. It works on quite a few files except some SQL files that I am ...
5
votes
2answers
195 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 ...
1
vote
2answers
182 views

Check if byte sequence contains utf-16

I am reading a byte sequence from a stream. Assume for the sake of argument, that the sequence is of a fixed length and I read the whole thing into a byte array (in my case it's vector<char> ...
-1
votes
1answer
163 views

c++ UTF-16 ofstream file creation Windows [duplicate]

Possible Duplicate: How to open an std::fstream (ofstream or ifstream) with a unicode filename? I have a string encoded in UTF-16 and I want to create a file, where the name of the file ...
2
votes
2answers
62 views

Will UTF-8 strings always be shorter than UTF-16?

If I have 2 strings of the same text, one UTF-8, and the other UTF-16. Is it safe to assume the UTF-8 string will always be smaller, or the same size, as the UTF-16 one? (byte wise)
5
votes
3answers
161 views

Java charAt used with characters that have two code units

From Core Java, vol. 1, 9th ed., p. 69: The character ℤ requires two code units in the UTF-16 encoding. Calling String sentence = "ℤ is the set of integers"; // for clarity; not in book char ch = ...

1 2 3 4 5 7