Arduino - convert int to byte array[16] - RFID write data

Try this:

  int var = 100;
  char number[16];

  sprintf(number, "%d", var);