How to encode the string [)>\x1e06\x1dKRUA144OZHIAIU.433642.034REH\x1e\x04 in pst-barcode, where \x1e is ASCII character 001E, \x1d is ASCII character 001D, and \x04 is ASCII character 004.
\documentclass{article}
\usepackage{fontspec}
\usepackage{pst-barcode}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{pspicture}(1in,1in)
%\psbarcode{[)>\x1e06\x1dKRUA144OZHIAIU.433642.034REH\x1e\x04}{width=1.0 height=1.0}
{qrcode}
\end{pspicture}
\end{document}
Compiling using the command
xelatex.exe -synctex=1 -interaction=nonstopmode "document"
It gives an error:
MiKTeX GPL Ghostscript 9.25: Unrecoverable error, exit code 1
I read the documentation; on page 58 there is an example, but it's for a different type of code, and I specifically need to compile a QR code in XeLaTeX.
Thank you in advance.

