UART transmit error character



Hello,
i have problem for using STM32H743VI. start from the basic problem, that is transmit UART standard. i use latest firmware of STM32H7 version 1.5.0, latest update STM32CUBEIDE 1.1.0 and latest update STM32CUBEMX 5.3.
here the code:
int main(void)
{
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */
/* MCU Configuration--------------------------------------------------------*/
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
HAL_Init();
/* USER CODE BEGIN Init */
/* USER CODE END Init */
/* Configure the system clock */
SystemClock_Config();
/* USER CODE BEGIN SysInit */
/* USER CODE END SysInit */
/* Initialize all configured peripherals */
MX_GPIO_Init();
MX_UART8_Init();
/* USER CODE BEGIN 2 */
/* USER CODE END 2 */
/* Infinite loop */
/* USER CODE BEGIN WHILE */
while (1)
{
/* USER CODE END WHILE */
HAL_UART_Transmit( &huart8, (uint8_t *)"test send data \n", sizeof("test send data \n"), 1000 );
HAL_Delay(1000);
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
}
the output is showed by image that i attach here. please any help?
Thankyou very much.