Tagged Questions
The double-byte tag has no wiki summary.
4
votes
5answers
6k views
Javascript: How to find whether a particular string has unicode characters (esp. Double Byte characters)
To be more precise, I need to know whether (and if possible, how) I can find whether a given string has double byte characters or not. Basically, I need to open a pop-up to display a given text which ...
1
vote
2answers
77 views
MySQL: char_length(), wrong value for Russian
I am using char_length() to measure the size of "Русский": strangely, instead of telling me that it's 7 chars, it tells me there are 14. Interestingly if the query is simply...
SELECT ...
1
vote
2answers
134 views
Convert (doublebyte) string to Hex
Let's say I have the word "Russian" written in Cyrillic. This is would be the quivalent of the following in Hex:
Русский
My ...
1
vote
3answers
296 views
How to identified given string is double byte characterset using java?
I want to Identify given string is double byte character set or not, using java?
Thanks
1
vote
1answer
47 views
Can PostScript DocumentMedia section have Unicode chars
So this is the definition of the Document media section
"%%DocumentMedia:
<medianame> ::= <text> (Tag name of the media)
<attributes> ::= <width> <height> ...
1
vote
1answer
287 views
Escape Double-Byte Characters for RTF
I am trying to escape double-byte (usually Japanese or Chinese) characters from a string so that they can be included in an RTF file. Thanks to poster falconcreek, I can successfully escape special ...
0
votes
0answers
141 views
jquery plugin validation validate the length of double-byte characters
The jquery-plugin-validationcan validate the length of input value use minlength( length ) and maxlength( length ) methods, but if you want to validate the length of double-byte characters like ...
0
votes
2answers
123 views
What are all the languages use double byte characters?
Can anyone point me to the list of languages that use double byte characters?
Thanks,
0
votes
0answers
412 views
Dectect ASCII codes for asian double byte / cyrillic character sets?
Is it possible to detect if an ascii character belongs to Asian double byte or Cyrillic character sets? Perhaps specific code ranges? I've googled, but not finding anything at first glance.
There's ...
0
votes
2answers
596 views
Double-byte characters in querystring using PHP
I'm trying to figure out how to create personalized urls for double-byte languages.
For example, this url from Amazon Japan has Japanese characters within the querystring (specifically, the path):
...
0
votes
3answers
1k views
Convert double-byte numbers and spaces in filenames to ASCII
Given a directory of filenames consisting of double-byte/full-width numbers and spaces (along with some half-width numbers and underscores), how can I convert all of the numbers and spaces to ...