Questions tagged [codepages]

Code page is another term for character encoding. It consists of a table of values that describes the character set for a particular language.

Code page is another term for , popular with some vendors (IBM, Microsoft, Oracle, etc). It consists of a table of values that describes the character set for a particular language.

See also http://en.wikipedia.org/wiki/Code_page

458 questions
-1
votes
1 answer

Configure Lotus Notes to parse utf8 in the header

The question is related to a question I've previously asked https://stackoverflow.com/questions/13158412/message-broker-sending-email The problem is as following: I send an email vie Message Broker email node, and the Lotus Notes client displays the…
gisly
  • 673
  • 1
  • 8
  • 30
-2
votes
1 answer

How to fix codepage in nuget package manager console?

When I'm executing dotnet command in the nuget package manager, the output displayed in ANSI codepage instead of UTF8. Where can I find Visual Studio settings to change the characters encoding in that console? PM>…
-2
votes
1 answer

Use specific encoding for reading ZipArchive

please tell me, how do I implement Encoding.GetEncoding ( "cp866")? In the course of export from archive the Russian symbols aren't correctly displayed. public static class ZipArchiveExtension { public static void ExtractToDirectory(this…
aaa
  • 121
  • 1
  • 6
-2
votes
1 answer

Polish characters getting displayed in CZECH language

We have a bash script that sends mail of reports generated . These reports are present in various languages, and currently we have a problem of reports generated in polish language. The reports are getting delivered alright, but are in the CZECH…
-2
votes
1 answer

Load data from a comp3 file to informatica

I have a Comp3 file as a source in my mapping. How do I load data in the target. The source defination has fixed length and the Code Page is '7-bit ASCII'. The data is not populated properly. Please help.
user2435056
  • 135
  • 1
  • 2
  • 4
-3
votes
1 answer

How get list of codepages from string

I have string with different codepages: string multi = "EnglishРусский日本語"; I need to return list of codepages: int[] GetCodePage(string multi) { return new int[] {1252, 1251, 932}; }
-3
votes
1 answer

C++ weird behavior with cout?

OK. So i have this code i written, and all it does is print 16 hexadecimal values and then prints 16 characters then prints a newline for the next row. In the for loop i noticed that i had to do it a certain way to get it to print anything above…
james28909
  • 554
  • 2
  • 9
  • 20
-5
votes
1 answer

How many Windows users have UTF-8 set as the code page?

In my understanding, the use of Windows filesystem functions accepting bytes (those with an A suffix) is discouraged (I didn’t find an official deprecation notice, but for example Python deprecated their use). On Unix-derived systems, file names are…
Manuel Jacob
  • 1,897
  • 10
  • 21
1 2 3
30
31