Project

General

Profile

Charset » History » Version 3

Per Amundsen, 02/09/2014 12:46 PM

1 3 Per Amundsen
_Added in 1.9.0_
2
3 1 Per Amundsen
*/charset [codepage]*
4
5
Sets text encoding used on current server.
6
7
/charset with no parameters will show current codepage.
8
9
*Parameters*
10
11 2 Per Amundsen
[codepage] - The "codepage":https://en.wikipedia.org/wiki/Code_page to set. -1 will use the system default encoding.
12 1 Per Amundsen
13
*Example*
14
15
<pre>
16
;Set codepage to UTF-8
17
/charset 65001
18
19
;Set codepage to ISO-8859-11
20
/charset 28601
21
22
;Set codepage to system default
23
/charset -1
24
</pre>