I have fixed it by copying woocommerce/checkout/review-order.php to child theme and change code on line number 38
Before
<?php echo wp_kses_post( apply_filters( ‘woocommerce_cart_item_name’, $_product->get_name(), $cart_item, $cart_item_key ) ) . ‘ ‘; ?>
After
<?php echo apply_filters( ‘woocommerce_cart_item_name’, $_product->get_name(), $cart_item, $cart_item_key ) . ‘ ‘; ?>