Project

General

Profile

Encoding » History » Version 3

Per Amundsen, 02/16/2023 12:28 PM

1 1 Per Amundsen
_Added in 1.8.3_
2
3
*/encoding [codepage]*
4
5
Sets text encoding used on current server.
6
7
/encoding with no parameters will show current codepage.
8
9 2 Per Amundsen
_Setting will update the serverlist entry if found._
10
11 1 Per Amundsen
*Parameters*
12
13 3 Per Amundsen
table(ktable).
14
|*Parameter*|*Description*|
15
| [codepage] | The "codepage":https://en.wikipedia.org/wiki/Code_page to set. -1 will use the system default encoding. |
16 1 Per Amundsen
17
*Example*
18
19
<pre>
20
;Set codepage to UTF-8
21
/encoding 65001
22
23
;Set codepage to ISO-8859-11
24
/encoding 28601
25
26
;Set codepage to system default
27
/encoding -1
28
</pre>