Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
1 answer
71 views

git(1) uses one representation when storing source code (not binary) by default which IIRC is utf-8 (no working-tree-encoding). Is this the same default as in Go? I tried comparing to Git but have ...
hakre's user avatar
  • 200k
3 votes
1 answer
178 views

Why some older web browsers (not all) incorrectly display currency symbols when symbols are produced by php NumberFormatter() but display correct symbol when given as html entity. Since correct symbol ...
Jimski's user avatar
  • 1,040
1 vote
1 answer
69 views

In Spring Boot 2.6.0 java 8 application configuration class has content: @Configuration public class Internationalization implements WebMvcConfigurer { // localeResolver, localeChangeInterceptor,...
haoz's user avatar
  • 11
Advice
0 votes
2 replies
104 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
0 votes
0 answers
39 views

I'm experiencing intermittent issues with Allure reports in GitLab CI where the console log occasionally displays garbled/corrupted characters instead of readable output. This doesn't happen ...
dreamer'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
0 votes
2 answers
126 views

I have a Java program that was working perfectly in Corretto 17, but is now having character set encoding issues in Corretto 25. I am reading a UTF-8 encoded XML from an external API. The code is ...
Philip H's user avatar
  • 420
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
88 views

When I convert my JSON file to YAML, i want any unicode chars to be part of the content and not escaped with backslash and quotes. Example: This is my file.json What can I do in order to make YQ not ...
Esben von Buchwald's user avatar
0 votes
0 answers
47 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 vote
0 answers
42 views

I'm writing FFI bindings to macOS' C-based Keychain Services API for use in a plugin. The Keychain Services API takes CFDataRef values, which allows storing arbitrary bytes to the Keychain, but the ...
habibalamin's user avatar
-1 votes
1 answer
51 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
3 votes
1 answer
122 views

Given a valid text file file and its java.nio.charset.Charset how can I efficiently (preferably using RandomAccessFile.seek() or InputStream.skip(), without reading the whole file) split it into two ...
Basilevs's user avatar
  • 24.6k
-5 votes
1 answer
122 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
0 votes
1 answer
144 views

The Wikipedia page for UTF-16 claims that it is obsolete, saying: UTF-16 is the only encoding (still) allowed on the web that is incompatible with 8-bit ASCII. However it has never gained popularity ...
Isaac King's user avatar
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
83 views

Recently, I have been working on a small program that requires me to print messages in Greek. Nothing fancy, just printing greek sentences in the terminal. For example: #include <iostream> int ...
Thanos's user avatar
  • 33
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
3 votes
1 answer
150 views

(Windows, Python 3.9.6, yt-dlp 2025.06.09) I have a youtube playlist whose titles contain both korean and latin characters. I can print the titles of the videos in the playlist using the below command:...
S.M.'s user avatar
  • 33
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
0 votes
1 answer
52 views

I have my own personal movie database system, within which context I NEVER want to see "extended" characters (with accents, umlauts, etc.) in any text fields. MS Co-pilot tells me that i ...
FumbleFingers's user avatar
1 vote
0 answers
180 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
0 votes
0 answers
34 views

I'm currently trying to implement a payment system using Stripe. After a payment, Stripe sends a webhook containing information about the purchase. However, before even a single line of php code is ...
Cas's user avatar
  • 1
1 vote
0 answers
290 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
0 votes
0 answers
49 views

I'm using a Google Apps Script to send weekly parent updates from a Google Sheet. The email content is plain text, and I want to include emojis (🎯, 🧩, 📌) as section headers. However, when the ...
Erin Justice's user avatar
1 vote
1 answer
107 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
0 votes
2 answers
89 views

When I run decode on a byte string encoded as UTF-8 I get ANSI encoding in a Windows command prompt. >python --version Python 3.13.0 >python -c "print(b'\xc3\x96'.decode('utf-8'))" >...
August Karlstrom'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
-2 votes
1 answer
73 views

I run a docker container with a mysql 8.0 database, Connect to it, check that the encoding is suitable for Cyrillic mysql > SHOW VARIABLES LIKE 'collation_database'; +--------------------+----------...
Kto Ya's user avatar
  • 9
0 votes
1 answer
37 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
0 votes
2 answers
66 views

I'm using PHP with cURL to programmatically download SSRS (SQL Server Reporting Services) reports in CSV format. The download works, but the character encoding is off. For example: Text that should be ...
Moussa's user avatar
  • 71
3 votes
0 answers
149 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
0 votes
0 answers
156 views

I am working with Mlflow==2.19.0 in a Red Hat Enterprise Linux Server release 7.9 (Maipo). Everythig works fine except with the log_image method that for some reason is converting parts of the string ...
Ivan's user avatar
  • 125
1 vote
0 answers
96 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
1 vote
1 answer
122 views

The TLDR here is simple: What's a sequence of chars that would make either UTF8's Encoding or Encoder return 6 (or even 5) bytes for a single char, as GetMaxByteCount implies it might? The non-TLDR: ...
David Wohlferd's user avatar
0 votes
1 answer
74 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
471 views

I'm creating a merge request in gitlab with a gitlab pipeline. I set special characters in .gitlab-ci.yml and provide it to a python script, which is creating the merge request. But in the merge ...
Pukinn's user avatar
  • 51
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
0 votes
0 answers
40 views

It's a very old PHP problem, but I'm working with an old SQL database for a private project. The SQL databsae is latin encoded and has for example "Andr\xc3\xa9" representing André. The ...
stoneferry's user avatar
3 votes
0 answers
125 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
1 vote
1 answer
84 views

In Oxygen XML Editor 27.0, using the "XPath/XQuery Builder" (which, as far as I know, makes use of Saxon as XPath/XQuery processor), when I execute the XPath 2.0 query encode-for-uri('§'), I ...
Philipp Koch's user avatar
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
0 votes
1 answer
65 views

Let`s say I've got a string with characters, which doesn't exist in ASCII. When I use the correct encoding everything works fine. let example = "Testing, ÜÄÖ ?ß 123 ..." let data = example....
cluster1's user avatar
  • 6,128
-2 votes
1 answer
86 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
106 views

I am parsing a CSV document to write a specification in SysML v2, which is essentially just a simple text file. Parsing it on Linux I get the result I desire. I use a SysOn-Docker to display my SysML ...
Qohelet's user avatar
  • 1,661
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
1 answer
84 views

I have a XML file which is created in Windows. It has some Turkish characters in it. <?xml version="1.0" encoding="iso-8859-9"?><?xml-stylesheet type="text/xsl" ?...
Ufuk Ugur's user avatar
  • 364
0 votes
2 answers
81 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
1 vote
1 answer
74 views

I would like to read some rtf files I received from an outside source into a table with Postgres. I am using the pg_stat_file() function to check whether or not the file exists and aim to read its ...
Jennifer's user avatar
0 votes
0 answers
103 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
2 3 4 5
307