Specific German characters (e.g., ü, ö) are transferred via TCP/IP in a particular format.
To correctly process these characters, check two fields:
RawPlateNumber and UnicodePlateNumber.
License plates containing special German characters should be found in one of these fields.
These fields are designed to handle such cases, typically using the UnicodePlateNumber format to encode these characters.
For example, the license plate "BÜ 1234" would be represented in Unicode as
`0x0042 0x00DC 0x0020 0x0031 0x0032 0x0033 0x0034`, which corresponds to the string "004200DC00200031003200330034".
You can use or decode these strings to properly handle German characters during data transfer.