Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
2 replies
93 views

I have a list of two tables in R. Each data frame contains several character and numeric columns. One of the columns is a company name column (for example, Company_Name). The target database only ...
Ferxani's user avatar
20 votes
4 answers
2k views

I made a small C program that should print an emoji: #include <stdio.h> #include <windows.h> int main(void) { SetConsoleOutputCP(CP_UTF8); printf("\U0001F625\n"); // 😥 ...
Tim's user avatar
  • 325
4 votes
1 answer
113 views

This question has to do with syntactic conventions for string encoding identifiers in locale names passed to setlocale in C, focusing on the particular example of UTF-8. My preliminary observation is ...
NikS's user avatar
  • 194
0 votes
0 answers
43 views

I work on my project on both Mac and Windows. Some editor headers were written in Visual Studio on Windows in Chinese, and were encoded in GBK(default I guess). However they don't show properly on mac ...
ArtS's user avatar
  • 2,022
-1 votes
1 answer
42 views

I want to pass a string to nodemailer so that it results in =C2=A0 i tried to pass in both 'Â ' (the literal chars), "\xC2\xA0", etc. But they always result in =C3=A9 A longer example in ...
gcb's user avatar
  • 14.5k
-5 votes
1 answer
119 views

I gave the following Swift-code to ChatGPT: let data = text.data(using: .utf8) It answered me: "This line takes your string and turns it into raw bytes (data) that can be stored, sent over the ...
mewi's user avatar
  • 791
1 vote
0 answers
32 views

I'm working with an AlmaLinux 9.6 Minimal server that hosts a Clipper-programmed system. This Clipper system uses the CP437 character set. I've successfully configured client computers to display the ...
Gabriel's user avatar
  • 11
0 votes
0 answers
46 views

For 3 days, the characters with French accents no longer appear and are replaced by a �. Everything was fine before. In phpmyadmin the display is correct. It's only on the remote server, in local all ...
Alain Jouve's user avatar
0 votes
0 answers
76 views

I'm trying to import some data downloaded from Google Sheets. The tab, when editing on the website, is called "Kodály". In Ruby, if I look at the individual characters, I see this: >> ...
Max Williams's user avatar
1 vote
0 answers
177 views

I'm working on a Next.js application (currently using version 15.3.2) and I'm looking to ensure the charset meta tag is correctly set in the HTML head. Typically, in a standard HTML file, I would just ...
masadamsahid's user avatar
1 vote
0 answers
281 views

I have a CAPL script done in Windows with a shebang at the beginning as follows: /*@!Encoding:65001*/ and this warning message pops up with green highlighting on a TriggerPDU2() function. Function ...
Daemon Painter's user avatar
1 vote
1 answer
99 views

The console doesn't display the non-English text input into it correctly, when it's later outputting them. However the text displays correctly when the user inputs them. Some of the non-English ...
Rudolf Snail's user avatar
2 votes
0 answers
73 views

My use case is the following: reading DirectByteBuffers from the network and decoding them into UTF-8 strings. I’ve observed that using a UTF_8 CharsetDecoder with a DirectByteBuffer is 3–4 times ...
Artem Golovko's user avatar
0 votes
1 answer
25 views

I'm going through a list of URLs that google have tried to index that gives 503. We have fixed a number of these, and I wanted to go through the list to test which are still left. However, I ...
user1015149's user avatar
3 votes
0 answers
148 views

I updated GCC to the recently released version 15.1 (via Msys2, on Windows 10). On cppreference, I noticed the page regarding the <text_encoding> header, which should be supported by GCC version ...
Sergio's user avatar
  • 1,011
1 vote
0 answers
95 views

I'm working on a team project on DRF, which uses PostgreSQL-based DB, my local PostgreSQL version is 17. The problem is that all of my colleagues have Ubuntu OS on their devices (and the project ...
TiimeIrre's user avatar
  • 263
0 votes
1 answer
69 views

I am trying to copy an xslx file from a remote system within a jenkins groovy script. This xslx file is encoded with windows-1252, so I give this Charset to the FileReader and FileWriter: ...
Kaffetrinken's user avatar
1 vote
1 answer
49 views

We have a bunch of translations loaded in our Database which are showing broken characters where there should be accented latin characters like 'É'. I'm not sure where the encoding went wrong but we ...
Daniel Black's user avatar
3 votes
0 answers
121 views

My Windows system ANSI code page is GBK, and I am working on a Windows console program. // SetConsoleOutputCP(65001); // Neither code page 936 nor 65001 affects the result. char utf8[] = { 0xE4, 0xB8, ...
ok im's user avatar
  • 31
0 votes
1 answer
66 views

I am using R from SAS using proc iml . I want to import a dataset from sas (in the example sashelp.class) and print the first 5 rows. options set=R_HOME="C:/PROGRA~1/R/R-44~1.2"; * Position ...
Luigi's user avatar
  • 492
-2 votes
1 answer
85 views

Attempt: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Content-Type" content="text/html;charset=...
Samuel Marks's user avatar
  • 1,930
0 votes
1 answer
92 views

I uploaded a file with 4 million rows to a table. The table is a database of vehicle license plates along with all the characteristics of that vehicle (color, tire size, engine capacity, and more). ...
Mafic rock's user avatar
0 votes
2 answers
80 views

I am using the above code in Oracle, to send a payload to an API. It's working for all the payload except when the comment field has a Degree sign(°). /////////////////////////////////////////////////...
user407710's user avatar
0 votes
0 answers
101 views

I am working with an Oracle database that uses the US7ASCII character set. When inserting Unicode characters using a Java JDBC program, the values are stored correctly, but when inserting the same ...
Muskaan's user avatar
1 vote
1 answer
207 views

I'm encountering an error when trying to run Liquibase with an Oracle database. Here's the exact error message I receive: Unexpected error running Liquibase: ORA-17056: Non-supported character set (...
AmrAbobaker's user avatar

1
2 3 4 5
307