-
Notifications
You must be signed in to change notification settings - Fork 9
/
charset-b.prg
52 lines (34 loc) · 949 Bytes
/
charset-b.prg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// {% LoadHrb( 'lib/tweb/tweb.hrb' ) %}
#include {% TWebInclude() %}
function main()
LOCAL o, oWeb
DEFINE WEB oWeb TITLE 'Test CharSet - Latin-1' INIT
DEFINE FORM o
INIT FORM o
HTML o PARAMS oWeb
<h3>
Source Format: ANSI <br>
Charset: <$ oWeb:cCharset $>
</h3><hr>
<br><b><u>Bloc 1</u></b>
<br> Special characters ÄäÕõüÜ Barça caña àáèéíòóú ü î
<br><br>
I have made a copy / paste of the charset.prg example in utf8.
Special symbols are not pasted correctly if our editor is Ansi encoded
<br><br><b><u>Bloc 2</u></b>
<br> ??? (China)
<br> ??? (Hong Kong)
<br> ?? (Japan)
<br> ?? (Korea)
<br> ??? (Taiwan)
<br> ????? (Israel)
<br> ????da (Greece)
<br> ?????? ?????? (Arabic)
<br> ?????? (Russia)
<br> ?????? (India)
<br> ????? (India)
<br> ?????? (India)
<br> ?????? (India)
ENDTEXT
END FORM o
retu nil