Tagged Questions

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

13
votes
2answers
902 views

Word break in languages without spaces between words (e.g., Asian)?

I'd like to make MySQL full text search work with Japanese and Chinese text, as well as any other language. The problem is that these languages and probably others do not normally have white space ...
11
votes
2answers
487 views

Japanese characters looking like Chinese on Android

I have an application on Android that displays Japanese text in WebViews and TextViews. There are some Chinese characters (kanji) that look, by convention, differently in China and in Japan, but share ...
10
votes
2answers
300 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 ...
5
votes
2answers
743 views

xelatex Invalid fontname

I want to use the openoffice chinese fonts, eg AR PL SungtiL GB, but the xelatex tells me that it is an invalid name (as shown below). It seems like the font name has spaces and so it doesn't ...
4
votes
1answer
370 views

Recognizing text as Simplified vs. Traditional Chinese

Given a block of text that's known to be Chinese and encoded in UTF-8, is there a way to determine if it's Simplified or Traditional?
4
votes
5answers
697 views

How to classify Japanese characters as either Kanji or Kana

Given such text 誰か確認上記これらのフ How can I classify each character as kana or kanji? To get some thing like this 誰 - kanji か - kanji 確 - kanji 認 - kanji 上 - kanji 記 - kanji こ - kana れ - kana ら - ...
3
votes
1answer
89 views

CJK White Space Characters Disappearing

I have a PHP script which fetches data from Salesforce via the Salesforce API and writes the output to a file using file_put_contents. The data is a mixture of Korean characters and English ...
3
votes
3answers
149 views

Selecting Chinese only, Japanese only and Korean only records in mysql/php

Is there a way to select in mysql words that are only Chinese, only Japanese and only Korean? In english it can be done by: SELECT * FROM table WHERE field REGEXP '[a-zA-Z0-9]' or even a "dirty" ...
3
votes
2answers
575 views

How can I detect CJK characters in a string in Ruby?

Given a string in Ruby 1.8.7 (without the awesome Oniguruma regular expression engine that supports Unicode properties with \p{}), I would like to be able to determine if the string contains one or ...
3
votes
3answers
405 views

How do you sort CJK (Asian) characters in Perl, or with any other programming language?

How do you sort Chinese, Japanese and Korean (CJK) characters in Perl? As far as I can tell, sorting CJK characters by stroke count, then by radical, seems to be the way these languages are sorted. ...
3
votes
1answer
165 views

How do I use Unicode Character Combining with Kanji/Hanzi?

I'm trying to find a workaround to display old and rare characters in unicode using character combining. Currently I'm converting some dictionaries from EPWING into text and there are 36 different ...
3
votes
1answer
477 views

how to make vim recognize CJK characters and render them larger than ASCII?

I am using vim to work on both Chinese and Western text. The default font size is okay for Western text, but the Chinese characters, while readable, are too small for my taste. Can I tell vim to ...
2
votes
3answers
89 views

Is Japanese word segmentation on web sites considered the norm and completely acceptable?

First off, I don't speak/read Japanese, making this a bit tricky. But in researching Japanese internationalization for websites, I started looking into some reportedly popular news sites ...
2
votes
1answer
81 views

Detecting single CJK character

I have a string that could be either an english word or a single CJK character. I am guaranteed that this string is in UTF-8 encoding. I am working inside of a perl script. The higher level problem ...
2
votes
3answers
433 views

UTF-8 CJK characters not displaying in Java

I've been reading up on Unicode and UTF-8 encoding for a while and I think I understand it, so hopefully this won't be a stupid question: I have a file which contains some CJK characters, and which ...
2
votes
1answer
70 views

VIM: deleting non-roman characters

I'm working with a document with both Roman and Asian characters, and I want put them each of them alone in two separated files and keeps their original structure, is it possible? Thanks
2
votes
1answer
236 views

How to pdflatex with CJK characters/font/encoding

What's the best way to combine pdflatex with CJK characters/font/encoding? I'd like to generate pdf that includes CJK characters, and in the future all possible unicode characters. I'm thinking ...
2
votes
2answers
1k views

C# Unicode (Japanese Characters)

I have a Japanese final coming up soon, so to help me study I made a program to help me study. But, I can't seem to get VS2008 to display any Unicode in the Console. This is a sample I used to see if ...
2
votes
1answer
171 views

Zend_Lucene CJK support

Does someone know if Zend_Lucene class support CJK (Chinese Japanese Korean). I want to use it on my own website the only problem it should work for both English and Japanese language. Also if ...
2
votes
3answers
746 views

Japanese characters in a latex \section{} cause an error

I am working on getting Japanese documents created with latex. I have installed the latest version of texlive-2008 which includes CJK. In my document I have the following: \documentclass{class} ...
2
votes
3answers
910 views

Newline control characters in multi-byte character sets

I have some Perl code that translates new-lines and line-feeds to a normalized form. The input text is Japanese, so that there will be multi-byte characters. Is it still possible to do this ...
1
vote
0answers
34 views

Cross platform input method support?

Currently I'm trying to add CJK input method support to blender, but I found the api details are quite different on the three main platform, windows, *nix and osx. I was wondering is there a library ...
1
vote
4answers
579 views

Can't read unicode (japanese) from a file

Hi I have a file containing japanese text, saved as unicode file. I need to read from the file and display the information to the stardard output. I am using Visual studio 2008 int main() { ...
1
vote
1answer
274 views

MySQL search Chinese characters

Let's say I have a row: 一天吃一個蘋果 Someone enters as a query: 天蘋 Should I break up the characters in the query, and individually perform a LIKE % % match on each character against the row, or is ...
1
vote
3answers
904 views

Validating Kana Input

I am working on an application that allows users to input Japanese language characters. I am trying to come up with a way to determine whether the user's input is a Japanese kana (hiragana, katakana, ...
1
vote
1answer
330 views

Why doesn't my CID (type 11) font work in GS8.61 on Windows

I have a customer in Macau that uses Windows EUDC for custom Big5 glyphs. I used Fontforge on Linux to convert the .TTE into a type 11 (CID type 2) font and created a custom CMap to map the Big5 code ...
0
votes
0answers
65 views

Add more cjk font in mupdf in android

I have a problem with font with project using mupdf in android. When reading an optimize pdf (remove some cjk fonts that mupdf project don't support), all characters (using this font) became blank. ...
0
votes
0answers
98 views

Compass Analyzer for both indexing and search

I'm working with compass to index and search terms. In my compass.cfg.xml, I have the following block: <searchEngine> <analyzer name="standard" type="Standard"/> <analyzer ...
0
votes
0answers
73 views

itext problem - opening PDF requires installing unnecessary font packs

I’m using iText to generate PDF reports. I use a FontSelector object which is initialized with CJK (Chinese, Japanese, Korean) fonts. Of course I also have iTextAsian library installed. I created a ...
0
votes
1answer
147 views

Multibyte encoding in java

i have no idea of how to add multibyte encoding support and very little knowledge on multibyte languages. Being working on a search engine, my application scans code in all programming languages. ...
0
votes
0answers
166 views

How to Sort Hangul Jamo( Korean Characters) based on KSX1001 character code?

I am working on one application which need sorting of Korean Characters by Jamo(Hangul Jamo) ie based on KSX1001 character code. I think,ICU not provide base on Hangul Jamo. So any package provide ...
0
votes
1answer
231 views

Cleaning up UTF-16/CJK characters using PHP?

I have some files on my computer that are in UTF-16, though this seems to be because of errors or corruption of the files rather than intent - they're supposed to be plain english. I uploaded one of ...
0
votes
1answer
114 views

Is it possible to use big5 character set in Drupal?

A potential client of ours wants to use the big5 character encoding on their new website. Is it possible to use the Drupal CMS to make a site in big5? Its possible this questions does not make sense ...
0
votes
2answers
424 views

Detect CJK characters in PHP

I've got an input box that allows UTF8 characters -- can I detect whether the characters are in Chinese, Japanese, or Korean programmatically (part of some Unicode range, perhaps)? I would change ...
0
votes
2answers
332 views

File upload mojibake

How do you do a file upload in an HTML form without running into mojibake? I have a form that has three fields: a file field a required text field a text field which accepts Japanese characters ...