Questions tagged [charset]

Character sets are used to represent a repertoire of characters by some kind of encoding system, such as US-ASCII, ISO-8859, or UTF-8.

Character encoding is used to represent a repertoire of characters by some kind of encoding system. Depending on the abstraction level and context, corresponding code points and the resulting code space may be regarded as bit patterns, octets, natural numbers, electrical pulses, etc. A character encoding is used in computation, data storage, and transmission of textual data. "Character set", "character map", "codeset" and "code page" are related, but not identical, terms.

Common character encodings include

  • ASCII
  • EBCDIC
  • ISO 8859
  • Windows-1250
  • Guobiao
  • Big5
  • Unicode

Source: https://en.wikipedia.org/wiki/Character_encoding

Related tags

68 questions
3
votes
1 answer

Is it possible to serve Apache's default internal pages with charset utf-8?

This question is specifically about the charset Apache (2.2 in my case) uses when serving it's default internal pages. For example, mod_autoindex directory listings, not-found ErrorDocument pages, 500-Internal Error pages, etc. The charset Apache is…
Jeff
  • 1,416
  • 3
  • 28
  • 50
3
votes
2 answers

Apache Web Server character encoding

I've recently transferred my webapp from my localhost (LH) to a VPS, and have had hebrew chars-encoding probs since. Whenever I send a request with a heb-char it results in "?????" saved to the DB. My LH config was tomcat6, MySQL, and centOS 6.2,…
OBY
  • 31
  • 1
  • 2
3
votes
3 answers

How do I make imp use right charachter set?

I am trying to import a dmp file from one database to another. The problem is that some special danish characters are not imported right because some character map conversion is done during import. This is the info when I start the import with imp…
awe
  • 227
  • 2
  • 3
  • 13
3
votes
2 answers

Mysql charset problem

I'm trying to import some data from one server to another. But when I do it, I'm having problems with charset. Words like Goiânia became Goiâni and conceição became conceição My Application was set to use latin1 charset Server 1 : MySQL Charset…
Newtonx
  • 305
  • 1
  • 4
  • 11
2
votes
3 answers

Can't cd into a directory named with accented characters

I have the following folders on a CentOS 7 Droplet. They were added via FTP from a French operating system. Evénement 1 Evénement 2 Evénement 3 The accented character (é) is replaced with a question mark when I do ls. I cannot cd into these…
Greg
  • 151
  • 1
  • 4
2
votes
1 answer

Spanish Characters in Linux Server Bash Shell

I have a database that contains Spanish words in it. It contains words like sueño which have "special characters" in them. The MySQL database collation is set to utf-8-general-ci which supports foreign characters, so the database should be…
user104997
  • 91
  • 1
  • 2
  • 8
2
votes
1 answer

Apache default charset doesn't work

I am trying to set default charset to ISO-8859-1, so I added the line below into httpd.conf. AddDefaultCharset ISO-8859-9 and I can see that value when I query it with root@server [/]# curl -A "Mozilla/4.0" http://localhost -I HTTP/1.1 200 OK Date:…
Tim
  • 141
  • 2
  • 6
2
votes
1 answer

How can be changed the linux system's default character set?

I'm working in a software development team using svn. Since many developer's computers are working using windows, text file codification has to be agreed with everyone. I decided to use Linux, and probably I will have to change my machine's default…
JPCF
  • 154
  • 2
  • 9
2
votes
0 answers

nginx reverse-proxy utf-8 not working?

I've installed Gitea on a Debian server and I'm using nginx as a reverse proxy and for the SSL setup. When I visit my Gitea instance, some characters aren't displayed correctly. That are for example the ticks inside of checkboxes, but also some…
user561290
1
vote
1 answer

Varnish - usage of non latin characters of an URL in VCL

I have a client, which needs Varnish to be installed on his server. He is russian speaking and has an online shop with the following example URL, which needs to be excluded from cache (корзина is the cart page). www.example.com/корзина/ So, is…
manifestor
  • 6,079
  • 7
  • 27
  • 39
1
vote
2 answers

Nginx charset directive fails to modify Content-Type header

I understand that the “charset utf-8” directive in an http or server block of a configuration file should make nginx include “Content-Type: text/html; charset=utf-8” in the headers of a response, instead of only “Content-Type: text/html”. However, I…
Jonathan Pool
  • 111
  • 1
  • 4
1
vote
1 answer

What characters are allowed for the username and password in FreeRADIUS?

I am testing the WLAN functionalities of a device connecting to a RADIUS server. This RADIUS server is located on a Raspberry Pi with Raspbian Stretch and is using FreeRADIUS 3.0 and Hostapd. For EAP-PEAP MSCHAPv2 the device should be able to handle…
1
vote
0 answers

National characters in Open Tomato router and QNAP NAS shell

I added my Country locale (pl_PL) to shell in Open Tomato based router Asus and QNAP NAS. Originally only en_US and en_EN locale where available. Now it is possible to use it for example in vim-full editor, installed from Entware-ng. So now both on…
mackowiakp
  • 259
  • 2
  • 3
  • 10
1
vote
1 answer

FreeBSD 10.3 + zfs - character set incorrectly displayed in terminal

I have a server with a samba share on zfs filesystem. Filenames are in hungarian. When I login with ssh, then the file names are diplayed incorrectly in the terminal: If I do an auto complete on the filename, then it is clear that the filename…
nagylzs
  • 759
  • 3
  • 12
  • 23
1
vote
1 answer

mysql: set default charset to utf8

In an effort to set the default charset for a MySQL server to utf8, I've added the following options to my.ini character-set-server=utf8 default-collation=utf8_unicode_ci But when I start the mysql client, I get the following error message: error:…
Dónal
  • 281
  • 6
  • 12