Unicode is a standard for the encoding, representation and handling of text with the intention of supporting all the characters required for written text incorporating all writing systems, technical symbols and punctuation.
4
votes
0answers
127 views
Unicode in Oracle Stored Procedure
create or replace PROCEDURE "SP_GETINCOMEENTRY" (
idec IN NUMBER := 1,
p_IncomeID IN TBL_INCOME.INCOMEID%TYPE := 1,
P_Data Out Sys_Refcursor,
P_Fromdate In ...
3
votes
0answers
63 views
R: Creating n-grams in R with Asian / Chinese characters?
So I'm trying to create bigrams and trigrams of a given set of text, which just happens to be Chinese. At first glance, the tau package seems almost perfect for the application. Given the following ...
3
votes
0answers
145 views
Unicode in Rhino
For some reason Unicode strings don't behave properly in Rhino, Mozilla's JavaScript engine. If I enter Unicode text in the REPL, or manipulate it, it returns back gibberish.
js> 'тотальная ...
3
votes
0answers
207 views
pyodbc returns unicode symbols replaced by latin
When connecting to Transbase source using Python and pyodbc (connection string is correct and works in other applications), I saw that symbols like ó, ű, é, á convert to o, u, e, a.
But if I connect ...
3
votes
0answers
370 views
Android TextView measureText for Arabic
Paint.measureText is not accurate with Arabic text. Here is what I tried:
I have a TextView tv1.
tv1.getWidth(); gives 480, which is okay. tv1.getPaint().measureText("المؤلف : عبدالرحمن ابن أبي بكر ...
3
votes
0answers
404 views
How to use ICU BreakIterator with a Unicode text file in C++
I am having trouble using the ICU BreakIterator on a whole UTF-8 Khmer (Cambodian) text file in order to break words for line-breaks (Khmer has no spaces between words like Thai).
I used a sample ...
2
votes
0answers
71 views
PostgreSQL group by bug on Unicode strings?
I have a very weird thing happening, where I noticed that a group by (word) wasn't always grouping by word if that word is a UTF-8 string. In the same query, I get cases where it's been grouped ...
2
votes
0answers
34 views
Can´t create mysql collation including different alphabets
I am trying to create a mysql collation with which you can search with transcriptions for cyrillic letters.
Here an example: If I send the sql command
SELECT "w"="в" COLLATE utf8_myowncollation_ci
...
2
votes
0answers
54 views
Storing Accents and Other Characters in a Database
I'm working with a sqlite3 database, selecting certain ID3 info obtained using mutagen from mp3s and storing it. When songs contain accents or other "foreign" characters, if I simply attempt to store ...
2
votes
0answers
109 views
Unicode that is not recognize properly
I'm using in Unicode in my application using
for(var i:int=0;i<16;i++)
{
for(var j:int=0;j<16;j++)
{
button = new Button();
button.x = j*35+10;
button.y = i*20+10;
...
2
votes
0answers
126 views
Android IME which accept unicode
While writing an Input method editor for android, what will i have to do to make it map accept some unicode character as input other than changing android:keyLabel (for example to make me map ...
2
votes
0answers
314 views
Incompatible encoding regexp match (ASCII-8BIT regexp with UTF-8 string) on Heroku
I have a Rails application where I use regex-based rules to categorize transactions. In my seeds.rb, I create some categories and rules, then import transactions from a CSV file (also utf8-encoded) ...
2
votes
0answers
104 views
Send string unicode to servlet
Please help me.
I have a problem when post unicode to servlet.
Although I have tried many ways.
I send a request from android:
HttpPost httppost = new HttpPost(Constants.ADD_REPORT_URL);
...
2
votes
0answers
49 views
Language encoding and displaying issues on my server
My app has arabic content in it. And everything was working fine on my development environment (localhost XAMPP). Now I moved to a Windows 2008 Server with Plesk, and the Arabic content is not ...
2
votes
0answers
124 views
Display the Tifinagh alphabet on Android emulator
To display Tifinagh characters on Android emulator I tried this method:
TextView tv=(TextView)findViewById(R.id.font);
Typeface face=Typeface.createFromAsset(getAssets(),"fonts/MZTIFIYU.TTF");
...
2
votes
0answers
129 views
How to plot R barplot with Chinese text by setting locale on Ubuntu?
This is with ref to my previous question on this forum, How to plot bar plot with Chinese names in input file?
I have already edited my sessionInfo like so:
> sessionInfo()
R version 2.14.1 ...
2
votes
0answers
241 views
How do I display the Indian regional languages properly in Android tablet?
I need to display Telugu text in an Android application. I am able to display in Android mobiles using ttf font files. But I am not able to display properly in tablets and the emulator. I do not care ...
2
votes
0answers
122 views
QWebView::findText doesn't work with Unicode’s Combining Diacritical Marks
I’m using QtWebKit (QWebView) to display text, and I want to implement a search functionality in it via QWebView::findText.
Problem is that the text that has to be displayed contains so-called ...
2
votes
0answers
244 views
Is it possible to update Ruby version in RPG Maker XP
This is related with unicode support. The current RPG Maker ruby version is 1.8, The problem is, using english RPG Maker, one cannot display non-standard character such as kanji (japanese characters) ...
2
votes
0answers
466 views
std::basic_stringstream<unsigned char> won't compile with MSVC 10
I'm trying to get UTF-8 chars to co-exist with ANSI 8-bit chars. My strategy has been to represent utf-8 chars as unsigned char so that appropriate overloads of functions can be used for the two ...
2
votes
0answers
504 views
Populating PDF Form using iTextSharp and Unicode characters
I have the following:
A PDF Form created with Adobe Acrobat X (all fields use Helvetica & Helvetica Bold)
A VB.NET project where I try to populate the PDF and then flatten it
What happens it ...
2
votes
0answers
567 views
Protocol buffers python - unicode decode error
I need to receive a protocol buffers message on my python - tornado server and get the stuff out of the binary message.
postContent = self.request.body
message = prototemp.ReqMessage()
...
2
votes
0answers
420 views
Delphi XE2 - handling blob fields
We are trying to make our app unicode compatible and we are migrating from delphi 2007 to delphi xe2, we came across few issues and need suggestions regarding them
1) one change is to store blob data ...
2
votes
0answers
265 views
Incorrect bidi behaviour in WPF?
I experience strange things when setting the "Language" property in WPF:
Set FlowDirection to "RightToLeft" on a Window or textbox/textblock
Set the Language property to "fa-IR"
Set the text to one ...
2
votes
0answers
255 views
Unicode support differences in Oracle jdbc driver
I have replaced ojdbc14.jar with ojdbc5-11.2.0.2.0.jar in my Java project because I need to move the support to Java 1.5 but since then all the unicode characters only allow half the length specified. ...
2
votes
0answers
703 views
Is there a map or tool for generating strange unicode character strings?
After seeing the famous reply about parsing HTML with regex:
RegEx match open tags except XHTML self-contained tags
I've tried to figure out how to do this craziness. Is there a tool that assists ...
2
votes
0answers
125 views
Using gperf on UTF-16 encoded input?
When moving code that uses a gperf-generated hashing function to use UTF-16 for its strings, how would you adapt/call the hashing function? The options I can see are:
Convert UTF-16 to UTF-8 for the ...
2
votes
0answers
400 views
Defining additional character subset names in fontconfig.properties in jre
Java documentation about font configuration file states,
"CharacterSubsetName - a name for a subset of the Unicode character set which certain component fonts can render. For Windows, the following ...
2
votes
0answers
62 views
How to implement shifted variable weighting for default Unicode collation?
The default Unicode collation element table defines four-level weight elements for Unicode characters, where the first three levels define the essential part of the sort order and the fourth level is ...
1
vote
0answers
32 views
Fully correct Unicode visual string reversal
[Inspired largely by trying to explain the problems with Character Encoding independent character swap, but also these other questions neither of which contain a complete answer: How to reverse a ...
1
vote
0answers
51 views
Unicode for currency not showing the currency symbol
I have this code
String [] currency = {"US Dollar", "Philippine Peso", "British Pound", "Japanese Yen", "Indian Rupee",
"Syrian Pound"};
char [] symbol = { ...
1
vote
0answers
103 views
How can a MFC Unicode application use MySQL ODBC Connector to connect to a latin1 MySQL database?
I unsuccesfully made various attempts to update records, where the name of the row in a MySQL database contains Umlaute (ä,ü,ö,ß). Finally I suspect that Record Field Exchange doesn't handle Umlaute ...
1
vote
0answers
52 views
Get the correct character/string from the ones formatted in a wrong font?
I don't really know what kind of this task to call. For some characters/string, if you display them in a TextBox with some font (I call it Font 1), it displays them correctly. But if you change the ...
1
vote
0answers
44 views
Unicode Query in OpenRowSet
I have a stored procedure with nvarchar parameters. i want to get returned table using OPENROWSET. but when i use following codes the results would be incorrect
Declare @ID int
Declare @sql ...
1
vote
0answers
64 views
Django's JSON and XML fixtures cause UnicodeEncodeError
I created a JSON file using Django's dumpdata command. When I import the data again with syncdb, Python throws an exception:
UnicodeEncodeError: 'ascii' codec can't encode character u'\xfc' in ...
1
vote
0answers
74 views
Converting Devanagari Unicode to its character
I am trying to convert the Devanagari Unicode to its character in Java and trying to display on CMD but it gives me a ? character.
Here is my code:
public class ConvertUnicode
{
public static ...
1
vote
0answers
29 views
XML version 1.1 in SQL Server
Is it possible to use XML version 1.1 (not 1.0) within SQL Server?
Basically I need to include some C0 characters (like 0x0001) into xml using the FOR XML statement, but I can't since it is not ...
1
vote
0answers
103 views
setlocale() doesn't work in iOS simulator?
Update: Strangely, setlocale() only fails on the iOS Simulator so I have amended the question title. It works fine on actual devices.
I'm working with native (C/C++) code under iOS 6 and I need to ...
1
vote
0answers
64 views
Printing hexadecimal Unicode code points with shell utilities like hexdump or xxd
Bash 4.2 and zsh support echo $'\u30a2', but are there alternatives to this using common shell utilities?
$ ruby -e 'puts ARGV[0].chars.map{|c|c.ord.to_s(16)}.join(" ")' aäア𝐀
61 e4 30a2 1d400
This ...
1
vote
0answers
37 views
How to use custom (installed) font for displaying non-english text in Java
I am unable to use custom font for displaying Urdu text in my awt application. I am new to java and I have searched the api and internet thoroughly but to no avail. Interestingly, Urdu text can be ...
1
vote
0answers
110 views
Single New Line vs New Paragraph in Textarea using jQuery
I am implementing a functionality called Single New Line and New Paragraph in Textarea on Google Chrome Browser (in IE my solution is working so no issue on IE because IE considers Shift+Enter (\r\n) ...
1
vote
0answers
79 views
Complex script language view on different phones
I have problem with complex scripting languages like "Farsi".
As you know before Android 2.3 we have problem with complex script languages. I search a lot and find a class to solve it (it got lots of ...
1
vote
0answers
150 views
Encoding unicode characters in URL using Win32
I am developing a Windows based application in which I need to pass unicode characters as part of the URL. I read that I need to percent encode them inorder to do so. According to my understanding ...
1
vote
0answers
44 views
Cannot pass unicode dynamically DroidText, ANdroid
I'm trying to create a pdf with chinese text, So initially im converting chinese to unicode then add write it to pdf. But i can only write static variables to pdf. My english is bit poor so please ...
1
vote
0answers
42 views
How can I standardize Japanese so I can do a word check for prohibited words in Lua?
There are too many combinations of half-width, full-width, katakana, hiragana, kanji, and using substitute characters (eg そ instead of ん).
python has a package called jcconv which would help me do ...
1
vote
0answers
80 views
bytes to string conversion error
I have a variable that comes from argument list:
When I try to print it it give error:
Here is my code segment:
debugfile = open("debugfile.txt", "w")
debugfile.write(args.data_dir_path)
...
1
vote
0answers
17 views
Are there any restrictions to java handling unicode user area?
I have a custom font with many glyphs in the private use area. When i do drawString("\ue21f",…);, nothing is printed, but the char is at this codepoint. If i print a simple A i get the correct A from ...
1
vote
0answers
119 views
Java 7 Bug: Displaying Telugu through Unicode literals
While displaying Telugu through unicode in Java 7,java is rendering the blends incorrectly.
For example, here is a simple snippet to display a word in HTML. It works great. All the browsers display ...
1
vote
0answers
48 views
PostKbdMessage for å character within Windows Mobile?
I am trying my best to simulate keyboard input to get å and Å on windows mobile.
Unfortunately WM6 does not support KEYEVENTF_UNICODE and so my challenge begins.
I already tried SendInput, ...
1
vote
0answers
85 views
virtualKeycode ToUnicode
I've been trying to get the unicode character for a given keycode, but i cannot figure out why i have to give so many parameters. From MSDN:
int WINAPI ToUnicode(
_In_ UINT wVirtKey,
_In_ ...




