59 { 0x00a3, 0x0024, 0x0040, 0x00ab, 0x00bd, 0x00bb, 0x005e, 0x0023,
60 0x002d, 0x00bc, 0x00a6, 0x00be, 0x00f7 },
62 { 0x0023, 0x0024, 0x00a7, 0x00c4, 0x00d6, 0x00dc, 0x005e, 0x005f,
63 0x00b0, 0x00e4, 0x00f6, 0x00fc, 0x00df },
65 { 0x0023, 0x00a4, 0x00c9, 0x00c4, 0x00d6, 0x00c5, 0x00dc, 0x005f,
66 0x00e9, 0x00e4, 0x00f6, 0x00e5, 0x00fc
69 { 0x00a3, 0x0024, 0x00e9, 0x00b0, 0x00e7, 0x00bb, 0x005e, 0x0023,
70 0x00f9, 0x00e0, 0x00f2, 0x00e8, 0x00ec },
72 { 0x00e9, 0x00ef, 0x00e0, 0x00eb, 0x00ea, 0x00f9, 0x00ee, 0x0023,
73 0x00e8, 0x00e2, 0x00f4, 0x00fb, 0x00e7, 0, 0x00eb, 0, 0x00ef
76 { 0x00e7, 0x0024, 0x00a1, 0x00e1, 0x00e9, 0x00ed, 0x00f3, 0x00fa,
77 0x00bf, 0x00fc, 0x00f1, 0x00e8, 0x00e0 },
79 { 0x0023, 0x016f, 0x010d, 0x0165, 0x017e, 0x00fd, 0x00ed, 0x0159,
80 0x00e9, 0x00e1, 0x011b, 0x00fa, 0x0161 },
82 { 0x0023, 0x00a4, 0x0162, 0x00c2, 0x015e, 0x0102, 0x00ce, 0x0131,
83 0x0163, 0x00e2, 0x015f, 0x0103, 0x00ee },
86 { 0x0023, 0x0024, 0x0160, 0x0117, 0x0119, 0x017d, 0x010d, 0x016b,
87 0x0161, 0x0105, 0x0173, 0x017e, 0x012f },
89 { 0x0023, 0x0144, 0x0105, 0x005a, 0x015a, 0x0141, 0x0107, 0x00f3,
90 0x0119, 0x017c, 0x015b, 0x0142, 0x017a },
92 { 0x0023, 0x00cb, 0x010c, 0x0106, 0x017d, 0x0110, 0x0160, 0x00eb,
93 0x010d, 0x0107, 0x017e, 0x0111, 0x0161
96 { 0x0023, 0x00f5, 0x0160, 0x00c4, 0x00d6, 0x017e, 0x00dc, 0x00d5,
97 0x0161, 0x00e4, 0x00f6, 0x017e, 0x00fc },
99 { 0x0054, 0x011f, 0x0130, 0x015e, 0x00d6, 0x00c7, 0x00dc, 0x011e,
100 0x0131, 0x015f, 0x00f6, 0x00e7, 0x00fc },
112 res = {
static_cast<char>( (ch >> 12) | 0xE0),
113 static_cast<char>(((ch >> 6) & 0x3F) | 0x80),
114 static_cast<char>( (ch & 0x3F) | 0x80) };
118 res = {
static_cast<char>((ch >> 6) | 0xC0),
119 static_cast<char>((ch & 0x3F) | 0x80) } ;
124 res = {
static_cast<char>(ch) };
139 for (
int i = 0; i < 40; ++i)
142 int in = data[i] & 0x7f;
149 out = pi_active_national_set[0];
152 out = pi_active_national_set[1];
155 out = pi_active_national_set[2];
158 out = pi_active_national_set[3];
161 out = pi_active_national_set[4];
164 out = pi_active_national_set[5];
167 out = pi_active_national_set[6];
170 out = pi_active_national_set[7];
173 out = pi_active_national_set[8];
176 out = pi_active_national_set[9];
179 out = pi_active_national_set[10];
182 out = pi_active_national_set[11];
185 out = pi_active_national_set[12];
197 if (in >= 0x08 && in <= 0x0f)
199 out = pi_active_national_set[13 + in - 8];
204 if (in > 32 && in < 0x7f)
214 res += QString::fromUtf8(utf8.c_str());