The range of byte is -128 to 127
e.g. For Java
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
"byte: The byte data type is an 8-bit signed two's complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive)."
You just need to convert that to display as a String as Hex.
Usually According to ISO/IEC 14443-3 the UID is a 7 byte Number with byte 4 being part of the check bytes
I don't know how to convert bytes to string in Nativescript but in Java you can do
StringBuilder Uid = new StringBuilder();
for (int i = 0; i < result.length; i++) {
// byte 4 is a check byte
if (i == 3) continue;
Uid.append(String.format("%02X ", result[i]));
}
While skipping the check byte is not totally needed to give you an unique ID this code does it.
For JavaScript How to convert hex string into a bytes array, and a bytes array in the hex string? should provide the answer with a similar iterate over the array converting each byte to hex string