CJK stands for Chinese, Japanese and Korean and is used to label issues common to these East Asian languages and their large character repertoires.

learn more… | top users | synonyms

0
votes
1answer
9 views

Chinese: how to get back corrupted chinese characters? [closed]

I wrote a MS-word .doc text in 2003 with both latin and Chinese characters, by example such : Qianziwen moderne (Xiandai Qianziwen 現代千字文). I reopened it and now get: Qianziwen moderne ...
1
vote
2answers
45 views

Detecting CJK characters in a string (C#)

I am using iTextSharp to generate a series of PDFs, using Open Sans as the default font. On occasion, names are inserted into the content of the PDFs. However my issue is that some of the names I need ...
0
votes
0answers
16 views

MFC Em-dash and En-dash in CJK resource files

I have a MFC application that has translation to several languages, and I want to use the characters: em-dash (—; Windows: Alt+0151; Unicode:\u2014) en-dash (–; Windows: Alt+0150; Unicode:\u2013) ...
2
votes
0answers
40 views

Is there a module to convert Chinese character to Japanese (kanji) or Korean (hanja) in Python 3?

I'd like to switch CJK characters in Python 3.3. That is, I need to get 價(Korean) from 价(Chinese), and 価(Japanese) from 價. Is there a external module like that?
3
votes
1answer
220 views

Casting ((char) a) where a is any number between int range

I know that ASCII codes are between 0-127 in decimal and 0000 0000 to 0111 1111 in binary, and that values between 128-255 are extended ASCII. I also know that int accepts 9 digits(which I was wrong ...
2
votes
0answers
66 views

Chinese font rendering in iOS

The results when rendering Chinese text in UITableViewCell look pretty bad: I think this is because of the fallback font rendering behaviour: the locale is English, but I'm rendering Simplified ...
0
votes
1answer
71 views

PHP and C++ for UTF-8 code unit in reverse order in Chinese character

The unicode code point for the Chinese word 你好 is 4F60 , 597D respectively. which I got from this tool http://rishida.net/tools/conversion/ The console application below will print out the ...
0
votes
1answer
67 views

Convert codepoint to wchar_t in C [duplicate]

If I know the unicode codepoint of this 2 chinese character 你好 in str How can I convert this char * str codepoint to chinese character and assign it to wchar_t * wstr ? char * str = "4F60 597D"; ...
1
vote
2answers
134 views

Chinese character in source code when UTF-8 settings can't be used [duplicate]

This is the scenario: I can only use the char* data type for the string, not wchar_t * My MS Visual C++ compiler has to be set to MBCS, not UNICODE because the third party source code that I have is ...
0
votes
3answers
157 views

Convert double-byte characters to integer C++

I'm building an MFC project in C++. I have a text field, in which the user is expected to type a number. I can convert it to integer when an English keyboard is used. But when the user switches to a ...
5
votes
2answers
172 views

Validate Japanese Character in Active Record Callback

I have a Japanese project that needs to validate a half width and full width Japanese character, 14 chars are allowed on half width and 7 characters on full width. Is there anyone who knows how to ...
5
votes
1answer
91 views

Awk: How to work on multiple files.txt in folder and subfolders?

Given a folder with subfolders themselves with multilangual .txt files such as: But where is Esope the holly Bastard But where is 생 지 옥 이 군 지 옥 이 지 옥 지 我 是 你 的 爸 爸 ! 爸 爸 ! ! ! 你 不 會 的 ! I already ...
1
vote
1answer
71 views

Awk: Characters-frequency from one text file?

Given a multilangual .txt files such as: But where is Esope the holly Bastard But where is 생 지 옥 이 군 지 옥 이 지 옥 지 我 是 你 的 爸 爸 ! 爸 爸 ! ! ! 你 不 會 的 ! I counted space-separated words' word-frequency ...
-1
votes
2answers
77 views

How can I get the number of lines containing Chinese characters?

I have a very big plain text file with all kinds of languages, such as English, Japanese, Chinese... I want to get the number of lines containing Chinese characters. I think this can be done using ...
0
votes
1answer
32 views

Awk: What wrong with CJK characters? #Korean

Given a .txt files with space-separated words such as: But where is Esope the holly Bastard But where is 생 지 옥 이 군 지 옥 이 지 옥 지 我 是 你 的 爸 爸 ! 爸 爸 ! ! ! 你 不 會 的 ! And the Awk function : cat ...
0
votes
1answer
54 views

Forcing URL to convert 4-part unicode string to Chinese character

My URL (which I'm passing to twitter/share in a query string) contains %C2%BC%C3%BE, the encoding for 件, but the browser decodes it as two characters ¼þ. How can I let the browser know that it should ...
1
vote
1answer
1k views

Convert or extract TTC font to TTF - how to?

I am already more than 8 hours trying to make the STHeiti Medium.ttc.zip font work on Windows: [https://code.google.com/p/kingfont/downloads/list] But I can't make it work. Is anybody able to make ...
0
votes
0answers
16 views

What is the replacement for Language Analysis framework's Morpheme analysis deprecated APIs

The Language Analysis framework is deprecated and its not even available in 64-bit. The documentation says - use CFStringTokenizer but the tokenizer doesn't provide functionalities available in lang ...
0
votes
1answer
12 views

Correct encoding for Asian CJK characters on Windows MYSQL 5.5.10?

Having problems saving CJK characters to my MYSQL DB, question marks are shown in DB. I've tested client input by writing to text file and this seems fine, so I expect the problem is on the server and ...
2
votes
0answers
158 views

jQuery load() encoding for Korean (and Japanese) lang

I've recently ran into a problem and I would really use a bit of help from the community. I'm trying to load a HTML file using jQuery load(). The index file: <!DOCTYPE html PUBLIC "-//W3C//DTD ...
1
vote
1answer
112 views

Options for MeCab Japanese tokenizer on iOS?

I'm using the iPhone library for MeCab found at https://github.com/FLCLjp/iPhone-libmecab . I'm having some trouble getting it to tokenize all possible words. Specifically, I cannot tokenize "吉本興業" ...
1
vote
0answers
142 views

Handlebars.js doesn't handle unicode as JSON's key?

I'am using handlebars.js and JSON data to fill my HTML. My test fail if I call a JSON key which is a CJK unicode character. Is there any workaround to successfully process (CJK) unicode keys with ...
1
vote
0answers
80 views

how to escape mod_rewrite default encoding

I am writing some mod_rewrite rule for non-English sites. My URI (query) looks like %E3%82%A2%E3%83%A1%E3%83%AA%E3%82%AB%E5%90%88%E8%A1%86%E5%9B%BD, but when I get the request in the application ...
0
votes
0answers
34 views

Change Collation Depending on Input Language

The collation for tables in my database are currently set to SQL_Latin1_General_CP1_CS_AS as their collation scheme. However, if users enter some Chinese/Japanese/Korean (CJK) characters it ...
0
votes
1answer
245 views

Reading Chinese characters in a file and sending them to a browser

I'm trying to make a program that: reads a list of Chinese characters from a file, makes a dictionary from them (associating a sign with its meaning). picks a random character and sends it to the ...
2
votes
1answer
122 views

How to make Haskell or ghci able to show Chinese characters and run Chinese characters named scripts?

I want to make a Haskell script to read files in my /home folder. However there are many files named with Chinese characters, and Haskell and Ghci cannot manage it. It seems Haskell and Ghci aren't ...
0
votes
2answers
344 views

Python CSV file UTF-16 to UTF-8 print error

There is a number of topics on this problem around the web, but I can not seem to find the answer for my specific case. I have a CSV file. I am not sure what was was done to it, but when I try to ...
0
votes
1answer
311 views

How to display Chinese characters in classic ASP using response.write

How to display Chinese characters in ASP using response.write? <% Response.CodePage=51936 Response.Charset="UTF-8" Response.ContentType = "text/html" Dim Msg Msg="简" %> ...
8
votes
1answer
227 views

AS3 Flash - render html via ExternalInterface

This is my first question on Stack Overflow. It's not the first time I wanted to write one, but usually I find a solution using the search bar, this time I didn't. The problem I'm tackling is a ...
2
votes
1answer
124 views

HTTP GET Chinese character using luasocket

I use luasocket to GET a web page which contains Chinese characters "开奖结果" (the page itself is encoded in charset="gb2312"), as below: require "socket" host = '61.129.89.226' fileformat = ...
0
votes
1answer
225 views

Unicode printing on a PRINTER in VB6

I'm trying to print a Unicode (Chinese) string on a printer (well, actually PDFCreator) but all I get is a VERTICAL print of the characters. I use the TextOutW function imported from gdi32.dll: ...
0
votes
2answers
153 views

Word Segmentation using ICU

I am using ICU4C to transliterate CJK. I am wondering whether it is possible to have word segmentation in ICU, to split Chinese text into a sequence of words, defined according to some word ...
0
votes
1answer
140 views

Transliterate CJK to Latin — preferably in C++ [closed]

I am trying to write a program that can transliterate CJK to Latin (i.e Pinyin, Romaji, etc.). For example you give a Chinese, Japanese or Korean document as input and then you get the transliterated ...
1
vote
0answers
89 views

Japanese input control

I have the following issue, concerning the way to fine control Japanese input in an iOS app. To make things clear I include an image to this post (see below). As one can see I have typed や in the ...
0
votes
2answers
420 views

Unicode string to Chinese characters

I have a unicode string, let's say "U+660E", and I want to display the corresponding character, which in this case is 明. See this page (ctrl-F to find 明). My code so far: string unicodeString = ...
0
votes
1answer
58 views

Display Chinese in VC++ 6 [duplicate]

Possible Duplicate: Display both of Korean and Chinese language in C++ I have the source code for a game that has been built in VC++ 6. The problem is that when I try to display a Chinese ...
1
vote
3answers
234 views

Display both of Korean and Chinese language in C++ [closed]

I have a text that I need to display in a messagebox in Chinese and Korean in C++. This is my text: Korean: 당신은 방을 입력하기에 충분한 돈을 가지고 있지 않습니다. Chinese: 你没有足够的钱进入房间。 But when I try to save that ...
1
vote
1answer
73 views

Remove a sub string in a Korean string in C++

I have a Korean string: "태권소녀 1". And now I want to remove a substring, " 1" (a space and '1' character). How can I do it in C++? With the English string it works ok, but I cannot do it with Korean ...
1
vote
1answer
75 views

Possible inconsistency for the Unicode data associated with the Chinese character U+5F8C 後

Here you'll find the following data for the Chinese Unicode character U+5F8C 後 : kGB0 = 6565 (kuten form for the simplified character 後) kGB1 = 2683 kSimplifiedVariant = U+540E 后 How ...
1
vote
1answer
464 views

Manipulating utf8mb4 data from MySQL with PHP

This is probably something simple. I swear I've been looking online for the answer and haven't found it. Since my particular case is a little atypical I finally decided to ask here. I have a few ...
2
votes
3answers
478 views

Displaying Korean Characters - iOS App

I am trying to display Korean text in my iPhone app. The app appends the Unicode of letters one by one to an NSMutableString and displays the string on the screen after each letter is appended. I ...
0
votes
1answer
530 views

Not able to parse XML file containing Chinese content

I have an XML file containing Chinese content. But while displaying I am getting question marks. Could somebody look into this issue? My book.xml : <?xml version="1.0" encoding="UTF-8" ...
2
votes
3answers
139 views

Text alignment different for different languages in IE6

I have a pagination bar, which holds the page items. And our application have to support i18n. Then we found out that the text can not align as expected when displaying Chinese language. Example ...
0
votes
1answer
169 views

Chinese PHP/MySQL/JSON/Android

I am currently working on an Android application which has a web-based management system attached to the content. What I want to do is display content in an Android application, which retrieves the ...
1
vote
1answer
196 views

CJK in knitr with LyX (Windows 7)

I'm trying to write a LyX document in English with some Chinese interspersed, and I also want knitr for the figures and analyses. My installation likes knitr, and it likes Chinese (using the ...
0
votes
3answers
134 views

Reading CJK characters from an input file in C

I have a text file which can contain a mix of Chinese, Japanese, Korean (CJK) and English characters. I have to validate the file for English characters. The file can be allowed to contain CJK ...
6
votes
2answers
148 views

GNU grep regex `[一-十]` (one to ten) does not match the Chinese character 四 (four)

This command $ echo '一二三四五六七八九十' | grep -oE '[一-十]' outputs: 一 二 三 五 六 七 八 九 十 The regex [一-十] (one to ten) is expected to match against Chinese numbers. As the example shows, it matches against ...
1
vote
1answer
217 views

Solr.NET and Chinese characters

I have a search index that handles both English and Chinese content. All documents are imported to SOLR by Solr.NET When I search the Chinese content from the browser (localhost:8389/solr/...) ...
2
votes
1answer
235 views

Finding index of Korean Alphabet (any Unicode char) in Korean Word (any Unicode Word) in SQL server

I have a requirement to search for people by name. Here peoples' names can be in English, Korean, or Chinese languages. For this I used Like condition to search on the basis of Name as below: select ...
3
votes
1answer
183 views

Is unicode-based XSS an issue?

Maybe this is better for security.stack, I'm not sure, but here's the question: I recently came across a blog claiming that <script>alert(1)</script> will get parsed into an actual <script>. ...

1 2 3 4 5 10