Tagged Questions
2
votes
2answers
69 views
UTF-8 string size in bytes
I need to determine the length of UTF-8 string in bytes in C. How to do it correctly? As I know, in UTF-8 terminal symbol has 1-byte size. Can I use strlen function for this?
2
votes
1answer
61 views
Valid UTF-8 string with Cyrillic symbols in C
I try to parse an UTF-8 JSON-message in C.
I pass the following code to the parser:
char *text = "{\"mdl\":\"users\",\"fnc\":\"getuserslist\"}";
and all works. But if message has a Cyrillic ...
1
vote
2answers
55 views
Dealing with utf8 using char *
Is there any c library that deals with utf8, using char*?
In particular, for all the char*, we will use utf8 compatible functions to deal with them:
counting length, comparing, find & replace, ...
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 ...
1
vote
2answers
89 views
Portable literal strings in C source files
Ok, I have this:
AllocConsole();
SetConsoleOutputCP(CP_UTF8);
HANDLE consoleHandle = GetStdHandle(STD_OUTPUT_HANDLE);
WriteConsoleA(consoleHandle, "aΕλληνικά\n", 10, NULL, NULL);
...
1
vote
1answer
305 views
Printing UTF-8 strings with printf - wide vs. multibyte string literals
In statements like these, where both are entered into the source code with the same encoding (UTF-8) and the locale is set up properly, is there any practical difference between them?
printf("ο ...
1
vote
2answers
65 views
UTF-8 format output with Unicode \uxxxx
I am stuck at this point at writing to a file with strings of UTF-8 format. I now have the value of 4E25 (for example). But I need to write to a text file with prefix \u. Since I can not directly ...
2
votes
3answers
158 views
Assigning non-ASCII characters to wide char and printing with printf
How can I assign non-ASCII characters to a wide char and print it to the console? This code down doesn't work:
#include <stdio.h>
int main(void)
{
wchar_t wc = L'ć';
printf("%lc\n", ...
1
vote
2answers
170 views
How to convert between character and byte position in Objective-C/C/C++
I need to convert from a byte position in a UTF-8 string to the corresponding character position in Objective-C. I'm sure there must be a library to do this, but I cannot find one - does anyone ...
5
votes
1answer
167 views
How to print UTF-8 characters on console using C
I have a C application where I receive a UTF-8 string aover a socket as a char*. Now I want to print it on the console using Eclipse CDT. How can I do this? What I get is usually something like ...
0
votes
1answer
296 views
Xcode 4.6 (4H127), clang complains of illegal character encoding for upper ASCII o-umlaut (0xF6)
This code compiled in the previous release of Xcode. I updated this week, and now compilation fails. I'm guessing there is something wrong with my code. The question mark in the code below is ...
3
votes
2answers
103 views
How to deal with (presumable) UTF-8 strings in C programs on OSX
Hopefully the question title describes my issue well enough.
Platform: OSX 10.8, llvm with clang++ compiler
I have got a directory with filenames in Japanese or Cyrillic characters. Those filenames ...
1
vote
2answers
154 views
How can I detect what alphabet is being used in utf8?
I want a quick and dirty way of determining what language the user is writing in. I know that there is a Google API which will detect the difference between French and Spanish (even though they both ...
4
votes
4answers
270 views
How to get the value of UTF-8 character
I have an utf-8 character in chinese or arabic language. I need to get the value of that UTF-8 character, like getting a value of ASCII character. I need to implement it in "C". Can you please provide ...
3
votes
1answer
225 views
how to convert utf8 to iso-8859-7?
I have legacy C code that does text processing. All rules and data are encoded in ISO-8859-7. Now, I am trying to port to android. I have build the appropriate JNI function that GetStringUTFChars(). ...
0
votes
1answer
104 views
Convert from cyrillic to latin C
How to make function that convert from UTF8 Cyrillic to UTF8 Latin characters? I know that I should make character table, but my main problem is how to represent string (in C ,Linux OS)? As char* or ...
0
votes
2answers
437 views
How to convert Unicode escaped characters to utf8?
I saw the other questions about the subject but all of them were missing important details:
I want to convert \u00252F\u00252F\u05de\u05e8\u05db\u05d6 to utf8. I understand that you look through the ...
1
vote
1answer
214 views
Appending Files using fopen (C programming language) and the “a+” Mode
I'm having trouble creating files in UTF-8 for appending. The MSDN documentation states that using "a+" for the mode parameter opens files for "reading and appending", which is what I need to do. For ...
1
vote
2answers
653 views
Simple UTF8->UTF16 string conversion with iconv
I want to write a function to convert a UTF8 string to UTF16 (little-endian). The problem is, the iconv function does not seem to let you know in advance how many bytes you'll need to store the output ...
5
votes
3answers
344 views
UNICODE, UTF-8 and Windows mess
I'm trying to implement text support in Windows with the intention of also moving to a Linux platform later on. It would be ideal to support international languages in a uniform way but that doesn't ...
2
votes
1answer
87 views
How to validate POST-ed strings as valid UTF-8 (in C)?
We have a CGI-program, that processes POST-ed forms. Some of the POST-ed text can contain non-ASCII characters — and the browsers already helpfully convert these to UTF-8.
I need to "harden" the ...
1
vote
2answers
443 views
How to convert a String from UTF8 to Latin1 in C/C++?
The question I have is quite simple, but I couldn't find a solution so far:
How can I convert a UTF8 encoded string to a latin1 encoded string in C++ without using any extra libs like libiconv?
...
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 ...
0
votes
0answers
87 views
Accepting single byte special characters into the windows terminal (testing on cygwin)
I am testing a C program in the windows terminal. I mocked up a quick example of the section I am having issues with. The example is as follows:
$ cat test.c
#include <stdio.h>
#include ...
8
votes
4answers
489 views
Explanation needed for an UTF-8 vs cpp case
I have Microsoft Visual Studio 2010 on Windows 7 64bit. (In project properties "Character set" is set to "Not set", however every setting leads to same output.)
Source code:
using namespace std;
...
6
votes
2answers
535 views
C / C++ UTF-8 upper/lower case conversions
The Problem:
There is a method with a corresponding test-case that works on one machine and fails on the other (details below). I assume there's something wrong with the code, causing it to work by ...
3
votes
2answers
296 views
Trouble comparing UTF-8 characters using wchar.h
I am in the process of making a small program that reads a file, that contains UTF-8 elements, char by char. After reading a char it compares it with a few other characters and if there is a match it ...
1
vote
1answer
173 views
UTF-16 to UTF-8 in C
In C I need to write a program that parses a CSV file encoded in UTF-16 take that information process it, and use that processed information to generate a new UTF-16 csv file.
As of right now all my ...
1
vote
2answers
143 views
parsing const char * returns a little up looking triangle. which character is it?
Hi I am writing a function that prases one by one the elements of a const char * variable and
then I write every one of the characters in a txt file. It recognizes all of them
but I have some ...
0
votes
1answer
112 views
printf(“%-10s”) works wrong in system locale
Once i use
setlocale(LC_ALL, ""); //use system locale
printf function does not align right. How do i align string in differnet locales?
1
vote
0answers
40 views
Timezonelist contains entries in mixed language
On windows, I am not able to set timezone to particular timezone. I use the win api SetTimezoneInformation to set it, it returns success even then the systems date/time control panel it is not ...
0
votes
2answers
556 views
Conversion from iso-8859-15 (Latin9) to UTF-8?
I need to convert some strings formated with Latin9 charset to UTF-8. I cannot use iconv as it is not included in my embedded system. Do you know if there is some available code for it?
2
votes
2answers
1k views
Is there a way to convert from UTF8 to iso-8859-1?
My software is getting some strings in UTF8 than I need to convert to ISO 8859 1. I know that UTF8 domain is bigger than iso 8859. But the data in UTF8 has been previously upconverted from ISO, so I ...
0
votes
1answer
150 views
How do I convert a char* to a char* that is UTF-8 encoded?
Under Windows I use MultiByteToWideChar(CP_ACP, ...) and WideCharToMultiByte(CP_UTF8, ...) for the conversion.
How do I do the same thing under OS X and Linux? I tried mbstowcs/wcstombs but the ...
3
votes
2answers
561 views
UTF8 processing in C
I have basic understanding of UTF8: code points have variable length, so a "character" can be 8 bits, 16 bits, or even longer.
What I'm wondering is if there some sample code, library, etc in C ...
3
votes
1answer
607 views
UTF-8 Width Display Issue of Chinese Characters
When I use Perl or C to printf some data, I tried their format to control the width of each column, like
printf("%-30s", str);
But when str contains Chinese character, then the column doesn't ...
-5
votes
1answer
100 views
How can I copy the contents of a file into another file without using cp? [closed]
I have an XML file that I need to parse with Lex but it is not working since it is encoded in UTF-8. However if I open the file copy the contents into an empty file and save it, Lex reads it. I tried ...
1
vote
1answer
173 views
How to iterate Unicode characters? (Not codepoints)
I'd like to iterate through Unicode characters, gobbling up all combining characters that follow the initial code point.
This is what I have so far, but it acts really weird for some random Unicode ...
2
votes
2answers
2k views
Using utf8 strings in C
I'm writing a native extension to Adobe AIR in C. The code should be ported to other platforms later.
In my function on C side i'm getting a string from air like this
uint32_t len;
const uint8_t * ...
1
vote
1answer
360 views
Making lex to read UTF-8 doesn't work
I wrote an xml parser that parses ASCII files, but I need now to be able to read UTF-8 encoded files. I have the following regex in lex but they don't match UTF-8. I am not sure what I am doing wrong:
...
0
votes
1answer
131 views
how to stat file with non ascii characters
For normal file path, I can use stat and get size of it. When the path contains non-ascii names like C:\temp\sमानकe\app.log, it does not work.
int main(int argc, char * argv[])
{
struct stat ...
3
votes
2answers
113 views
How to insert UTF8 literal in GtkTextView?
I want to insert • into GtkTextView widget. In Python + pyGTK this line was sufficient:
self.__textBuffer.insert_at_cursor(u'\u2022')
Because I'm rewriting my application to C i need to translate ...
2
votes
4answers
855 views
How do I convert a UTF-8 string to upper case?
Is there a portable way to convert a UTF-8 string in C to upper case? If not, what is the Linux way to do it?
1
vote
1answer
1k views
Looking for UTF8-aware formatting functions like printf(), etc
I discovered an interesting problem when processing UTF-8 strings containing non-ASCII chars with C standard library formatting functions like sprintf():
The functions of the printf() family are not ...
0
votes
3answers
89 views
Sending foreign characters in c
I tested this but it won't work. The foreign characters get lost.
char message [] = "stringtobesendedwithforeigncharacters도쿄";
t = 39;
while(curler < t) {
r = send(sockfd, message, t, 0);
...
5
votes
4answers
1k views
How can char[] represent an UTF-8 string?
In C11, a new string literal has been added with the prefix u8. This returns an array of chars with the text encoded to UTF-8. How is this even possible? Isn't a normal char signed? Meaning it has one ...
0
votes
1answer
226 views
How to get UTF-8 encoded value of stdin?
I need to write a program in ANSI C that will display the UTF-8 encoded hexadecimal values of each character of stdin, regardless of the character encoding that stdin uses. For example,
AÀĀ
yields
...
0
votes
1answer
121 views
Separating traditional Chinese character from utf 8 mixture
I am writing a program in C/C++ which takes a user's input. The input is a utf-8 string which may mix English with Chinese and some punctuation marks.
My program has to seperate those Chinese ...
6
votes
5answers
311 views
Is UTF8 injective mapping?
We write a C++ application and need to know this:
Is UTF8 text encoding an injective mapping from bytes to characters, meaning that every single character (letter...) is encoded in only one way? So, ...
2
votes
1answer
160 views
Reading and writing in UTF8 a text file in C using regex
I have to write a simple piece of code that acts on a file; my software have to scans the file searching for a pattern with a regex ( i never had to use the regex in C, but generally speaking, i know ...
