Tagged Questions
0
votes
0answers
24 views
How to convert Japanese characters to Latin characters?
I try to program an application to convert foreign characters.
how can i convert Japanese character か to ka?
I am still in research mode of UCD data.
1
vote
1answer
31 views
Accented characters in Views are not rendered properly
I'm using ServiceStack (v3.9.44.0) as a Windows Service (targeting .Net4.5) and I use Razor to let ServiceStack generate and serve HTML.
Things work pretty well, but there is an odd issue: it seems ...
11
votes
2answers
190 views
Combine my own unicode characters in c#?
é is an acute accent letter. é can be also represented by ́ + e = é.
However, I was wondering whether I can combine any unicode chars?
For example:
I was looking for a unicode code point ...
0
votes
2answers
53 views
Escape unicode (%u2014) in javascript or in C#/.NET?
I found %u2014 in the wild west of the internet (actually a review on rotten tomatoes). I remember seeing something like this in javascript. I can't remember if it was in a string or not but I figure ...
3
votes
1answer
75 views
Why are HtmlEncode and HtmlDecode not isomorphic in .NET?
I find this surprising, and rather annoying.
Example:
Decode(”) => ”
Encode(”) => ”
Relevant classes:
.NET 4: System.Net.WebUtility
.NET 3.5: System.Web.HttpUtility
I ...
1
vote
3answers
323 views
Char returns the wrong value for 29 unicode charachters - Need .NET cast / convert of nchar to char
Need a .NET cast / convert of the SQL nchar to char.
More specifically cast of the nchar UNICODE to the char ASCII.
Where this is complicated is SQL char uses the full byte.
Not the pure ASCII of ...
48
votes
2answers
2k views
How can I perform a culture-sensitive “starts-with” operation from the middle of a string?
I have a requirement which is relatively obscure, but it feels like it should be possible using the BCL.
For context, I'm parsing a date/time string in Noda Time. I maintain a logical cursor for my ...
0
votes
1answer
75 views
IPAddress.TryParse with input containing unicode
Per MSDN http://msdn.microsoft.com/en-us/library/system.net.ipaddress.tryparse(v=vs.100).aspx, ipString can't contain Unicode characters or else ArgumentException will be thrown.
Is anyone able to ...
1
vote
1answer
66 views
how to convert unicode entities to unicode text c#
I have read some text from facebook using graph api and it return me message in form of unicode like this
\u092e\u094b\u0939\u093e\u0932\u0940 \u092e\u0947\u0902
so i want to convert this to text in ...
1
vote
1answer
45 views
Equivalent for .net Uri.EscapeDataString in CLI for unicode encoding
In .net we have Uri.EscapeDataString which does encoding for unicodes. It converts "Ää" to "%C3%84%C3%A4". What is the equivalent for Uri.EscapeDataString in CLI . My code is in VC++ and i don't ...
14
votes
2answers
217 views
Reverse a string with accent chars?
So I saw Jon's skeet video and there was a code sample :
There should have been a problem with the é - after reversing but I guess it fails on .net2 (IMHO), anyway it did work for me and I did see ...
10
votes
1answer
360 views
How do I normalize a string?
In .NET you can normalize (NFC, NFD, NFKC, NFKD) strings with String.Normalize() and there is a Text.NormalizationForm enum.
In .NET for Windows Store Apps, both are not available. I have looked in ...
0
votes
0answers
114 views
Question marks instead of Hindi characters [closed]
I have an ActiveX control developed in C# which exclusively consists of a TextBox (it's for input testing purposes only). This control is instantiated by an external application (ENPS, a journalism ...
1
vote
1answer
48 views
How can I canonicalize diacritic string representation between .NET and Mono OSX?
I have a cross platform application using .NET for Windows and Mono for Mac / OSX.
My application deals with filenames and writes serialized data structures to disk which contain filenames as ...
1
vote
1answer
172 views
LoadKeyboardLayout does not change the UI of On screen keyboard
I have activated the Windows On screen keyboard for my application and changed the keyboard layout to Tamil before displaying the onscreen keyboard, using the following code:
Private Const ...
0
votes
1answer
54 views
Unicode characters in processes and winrar
I am using the code below to start a new process and archive files using winrar:
Private Function RunCmd(ParamArray commands As String()) As String
Dim returnvalue As String = String.Empty
...
0
votes
1answer
78 views
.NET - Unicode character at the end of the sorting order
I am hoping there is a character that I can use to put a string as the last item when sorted in a list. Note this does not have to be bullet proof, but considering e.g. +,_,( etc are usually used to ...
0
votes
2answers
484 views
TextBox in Windows Forms does not display Unicode characters
I have a Unicode character in the settings of a VB.NET application.
With the following code:
CurrencyText.Text = My.Settings.Options_Display_Currency
I try to render this value in a text box ...
4
votes
1answer
464 views
Converting Unicode string to unicode chars in c# for indian languages
I need to convert unicode string to unicode characters.
for eg:Language Tamil
"கமலி"=>'க','ம','லி'
i'm able to strip unicode bytes but producing unicode characters is became problem.
byte[] ...
1
vote
1answer
215 views
VB code to convert text file to UTF16
I am new to VB Code and struggling with Encode, Decode stuff. I need help with converting a text file from ANSI to UTF-16LE in VB.NET. This is what I have done so far. Later I am using BulkInsert for ...
1
vote
1answer
172 views
DB2/400 field with CCSID 1208 (UTF-8) and oledbtype issue
I have a table in AS/400 DB2 table:
SCDSC VARCHAR(120) CCSID 1208 DEFAULT NULL ,
CCSID 1208 implies UTF-8.
In my c# code this is the definition that works.
cmd.Parameters.Add("scdsc", ...
0
votes
1answer
319 views
Read UTF8/UNICODE characters from an escaped ASCII sequence
I have the following name in a file and I need to read the string as a UTF8-encoded string, so from this:
test_\303\246\303\270\303\245.txt
I need to obtain the following:
test_æøå.txt
Do you ...
1
vote
3answers
90 views
Removing variations of Japanese characters from list
QUESTION:
In .net (v4.5) I have a list of Japanese symbols containing say あ, い, う, え, お, か, き, く, け, こ, が, ぎ, ぐ, げ, ご, さ, し, す, せ, そ, ざ, じ, ず, ぜ, ぞ.
How can I remove phonetic variations from the ...
2
votes
2answers
133 views
Convert &#____ to \u____ in c#?
I want to show a special character.
I found this link which displays everything.
let's take for example this char :
2 questions )
how can I convert ↓ , ↓ to \u____unicode ...
2
votes
2answers
292 views
.NET BinaryReader not obeying encoding
When reading in a Binary file using System.IO.BinaryReader the byte order seems to be unaffected when using any of the multi-byte Read methods.
BinaryReader br = new BinaryReader(fs, ...
0
votes
0answers
80 views
Can right-to-left text handling be disabled in Flash TextArea so that Arabic/Hebrew glyphs are rendered left to right?
I am unhappy with the way Flash fl.controls.TextArea renders mixed English and right-to-left text. Is there a way to force the system to not recognize the Arabic/Hebrew characters as "right to left" ...
3
votes
2answers
190 views
Coding in non-ASCII languages
Alright, I found this strikingly odd to me but in C#, you can actually write your source code in a different language. I've wrote an example source code in Korean to illustrate my point:
namespace ...
1
vote
1answer
148 views
NHibernate String Mapping to UTF8
i am using NHibernate together with a Firebird Database and are not sure if the String-Types are mapped correctly. In .NET a String-Type is normally UTF16 encoded. In Firebird i have defined my Domain ...
3
votes
1answer
159 views
How to change encoding of UserAgent in HttpWebRequest?
Today I met a problem with the encoding of UserAgent when I tried to use HttpWebRequest to post a request.
Normally, UserAgent consists of Latin letters and punctuation. However, I need to simulate ...
4
votes
2answers
2k views
How to read text files with ANSI encoding and non-English letters?
I have a file that contains non-English chars and was saved in ANSI encoding using a non-English codepage. How can I read this file in C# and see the file content correctly?
Not working
StreamReader ...
4
votes
2answers
231 views
Generating a random string
I'm trying to generate a random string in .NET and convert to bytes, and running into a little difficulty. I'd like the full set of possible characters, and my understanding is that a string can ...
0
votes
2answers
46 views
Generate an array of 0 - i chars
I am trying to generate an array of chars using the '\u...' syntax. The purpose is to let the user select which characters they want to filter out of some string. This is what I have so far"
char[] ...
1
vote
0answers
135 views
How can I detect invalid unicode code points in .NET?
I'm using some PInvoke calls (specifically GetWindowText()) and occasionally I get a string with invalid Unicode code points in it (probably due to bugs in the program whose window I'm looking at). ...
5
votes
1answer
744 views
Encoding.UTF8.GetString doesn't take into account the Preamble/BOM
In .NET, I'm trying to use Encoding.UTF8.GetString method, which takes a byte array and converts it to a string.
It looks like this method ignores the BOM (Byte Order Mark), which might be a part of ...
0
votes
1answer
140 views
Unicode characters does not display in .net
I have a table which store some non English letters as varchar in the sql server. When i retrieve the data and show it in a grid view, it shows the exact character that i stored. But in some machines ...
1
vote
0answers
77 views
Losing Alt-Gr characters in a templated list controls
We are writing software which need to input characters from languages such as Polish & Chinese. These languages use the Alt-Gr key extensively, such as Alt-Gr-OemQuestion for a } in Spanish or ...
2
votes
2answers
1k views
Encoding with HTTP Client in .net 4.5
I'm consuming some data of the fogbugz XML Api. This api always offers UTF-8 Data.
When using the WebClient Class for GetRequest I was able to set the encoding.
For example:
var result = new ...
-1
votes
1answer
85 views
From and reply-to field messed up when containing both comma and unicode characters
In .net I am having problems with the From and Reply-to field when their values contain both commas and utf-8 chars. Let me explain better:
I use this:
Dim Mail As New MailMessage
.....
Mail.From = ...
0
votes
2answers
209 views
HTML Encoding alpha, beta, gamma
I am trying to HTML encode a string that contains alpha, beta, and gamma characters (α, β, γ
). Unfortunately, using the System.Web.HttpUtility.HtmlEncode is not encoding these characters. Is there ...
0
votes
2answers
119 views
Can I make a rich text box display control pictures?
I'm trying to display control pictures in a rich text box. I need the textbox to remain monospaced.
When I copy-paste said characters into Visual Studio, they appear monospaced and just fine. But ...
0
votes
0answers
139 views
Encoding .NET string for PDF output
I have a PDF library, which I use to write string into a PDF document. I'm using the font "MS gothic UI" for the PDF since it contains Unicode characters (e.g. Japanese symbols).
The problem is, that ...
1
vote
2answers
187 views
Levenshtein distances and special characters
I have implemented a Levenshtein distance algorithm using a trie tree, as described here by Steve Hanov.
However, I'm having difficulty handling special characters.
For instance, if I calculate the ...
16
votes
1answer
460 views
Why isn't string.Normalize consistent depending on the context?
I have the following code:
string input = "ç";
string normalized = input.Normalize(NormalizationForm.FormD);
char[] chars = normalized.ToCharArray();
I build this code with Visual studio 2010, ...
1
vote
1answer
207 views
How to render Zalgo text in C#
GDI+'s DrawString can't seem to render Unicode superscripts and/or subscripts. It shows them as squares and doesn't stack.
Drawn using DrawString
private void Form1_Paint(object sender, ...
0
votes
4answers
743 views
Arabic characters issue
I have some problems with displaying some Arabic text in my iPhone application. When I am displaying it on a UILabel, it shows like ?????? ????? ?????? The string comes from server as XML, I parse it ...
1
vote
1answer
167 views
How do I find which client_locale corresponds best to my Windows language setting?
Apologies, my question may be incorrect, but CLIENT_LOCALE seems like the current most-likely culprit:
I've created a unicode database on my Informix server. We're pretty sure (but frankly, not ...
1
vote
1answer
139 views
If I use an nchar column, how can I store Czech text in an IBM819 database?
I asked a question yesterday, about switching our database over to UTF-8 (multi-byte char, unicode) encoding from IBM819 (single-byte char, Latin1 subset), because of a new requirement to support text ...
15
votes
3answers
494 views
What version of Unicode is supported by the .NET platform or how can I use higher planes?
I remember somewhat vaguely having read that .NET supported Unicode version 3.0 and that the internal UTF-16 encoding is not really UTF-16 but actually uses UCS-2, which is not the same. It seems, for ...
7
votes
3answers
761 views
HttpUtility.HtmlEncode escaping too much?
In our MVC3 ASP.net project, the HttpUtility.HtmlEncode method seems to be escaping too much characters. Our web pages are served as UTF-8 pages, but still the method escapes characters like ü or the ...
0
votes
2answers
161 views
How do I convert a string like “\\u0012” into a Char “\u0012”
The string is literary "\\u0012" (example). I have to make it into a "\u0012" (notice the \ and \\). Char.Parse() doesn't work.
There must be a simple way. Perhaps try to convert the 0012 into a byte ...

