Create shortcode for each dimension property based on product ID in WooCommerce

Summarize:
Woocommerce product dimensions are length, width and height
Scope of this question is to create a shortcode for each product dimension property individually based on product ID.

Problem:
I found many sources and no one split the dimensions in three single shortcode attribute, like in Display WooCommerce Product Dimensions via a Shortcode answer thread.

This is an example on how Display WooCommerce Product Dimensions via a Shortcode.
I don’t know how to show attribute in near.

Description:
Add where needed a shortcode for Lenght
[user_meta id="35" key="lenght"]
Add where needed a shortcode for Width
[user_meta id="35" key="width"]
Add where needed a shortcode for Height
[user_meta id="35" key="height"]

Expections:
Something like this with a shortcode foreach dimensions

add_action( 'woocommerce_after_shop_loop_item', 'aman_show_product_dimensions', 20 );
  
function aman_show_product_dimensions() {
   global $product;
   $dimensions = $product->get_dimensions();
   if ( ! empty( $dimensions ) ) {
      echo '<div class="dimensions"><b>Height:</b> ' . $product->get_height() . get_option( 'woocommerce_dimension_unit' );
      echo '<br><b>Width:</b> ' . $product->get_width() . get_option( 'woocommerce_dimension_unit' );
      echo '<br><b>Length:</b> ' . $product->get_length() . get_option( 'woocommerce_dimension_unit' );
      echo '</div>';        
   }
}