Project

General

Profile

Charset » History » Version 4

Per Amundsen, 02/15/2023 07:03 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 4 Per Amundsen
table(ktable).
12
|*Parameter*|*Description*|
13
| [codepage] | The "codepage":https://en.wikipedia.org/wiki/Code_page to set. -1 will use the system default encoding. |
14 1 Per Amundsen
15
*Example*
16
17
<pre>
18
;Set codepage to UTF-8
19
/charset 65001
20
21
;Set codepage to ISO-8859-11
22
/charset 28601
23
24
;Set codepage to system default
25
/charset -1
26
</pre>