The answer i ended up with was a quick conversion to a UTF in order to print it. Seems you might have to convert to Latin-1.
For a moment I only have symbols from the lower half of ASCII table.
I meant - can that be done as simple as in C, i.e:
```c
u8 *buf;
...
printf("%s", (char*)buf);
```
without any twists and turns.
