ADXL362 with ESP32

I'm trying to connect an ADXL362 with a ESP32 using the library ADLX362 by anne.
The code i'm uploading is the example ADXL362_SimpleRead

/*
 ADXL362_SimpleRead.ino -  Simple XYZ axis reading example
 for Analog Devices ADXL362 - Micropower 3-axis accelerometer
 go to http://www.analog.com/ADXL362 for datasheet
 
 
 License: CC BY-SA 3.0: Creative Commons Share-alike 3.0. Feel free 
 to use and abuse this code however you'd like. If you find it useful
 please attribute, and SHARE-ALIKE!
 
 Created June 2012
 by Anne Mahaffey - hosted on http://annem.github.com/ADXL362

 Modified May 2013
 by Jonathan Ruiz de Garibay
 
Connect SCLK, MISO, MOSI, and CSB of ADXL362 to
SCLK, MISO, MOSI, and DP 10 of Arduino 
(check http://arduino.cc/en/Reference/SPI for details)
 
*/ 

#include <SPI.h>
#include <ADXL362.h>

ADXL362 xl;

int16_t temp;
int16_t XValue, YValue, ZValue, Temperature;

void setup(){
  
  Serial.begin(9600);
  xl.begin(10);                   // Setup SPI protocol, issue device soft reset
  xl.beginMeasure();              // Switch ADXL362 to measure mode  
	
  Serial.println("Start Demo: Simple Read");
}

void loop(){
    
  // read all three axis in burst to ensure all measurements correspond to same sample time
  xl.readXYZTData(XValue, YValue, ZValue, Temperature);  
  Serial.print("XVALUE=");
  Serial.print(XValue);	 
  Serial.print("\tYVALUE=");
  Serial.print(YValue);	 
  Serial.print("\tZVALUE=");
  Serial.print(ZValue);	 
  Serial.print("\tTEMPERATURE=");
  Serial.println(Temperature);	 
  delay(100);                // Arbitrary delay to make serial monitor easier to observe
}

The pins connected are SCLK, MISO, MOSI, and CSB of ADXL362 to
SCLK, MISO, MOSI and CSB from the ESP32
I notice the lecture in the serial monitor is something like

	(W��<
ڜɀ	�aVW���l,�x��A�	W�����N�o���'!�:��lTP���

But when I upload the same code to an arduino nano I can get an actual value. It is possible that this library does not work with the ESP32, and what can i do to solve this problem?

Hola, cambia los baudios, generalmente esp32 usa 115200.

  Serial.begin(115200);

The Serial baud rates in Serial.begin() (set in your code to 9600) and the Arduino serial monitor must match, or you will see that sort of nonsense.