WooCommerce show decimals in totals [closed]

Try

$first_number = number_format( $order->get_subtotal(), 2 );

number_format() is the php function that is setting the decimals in your first bit of code above.

See http://php.net/manual/en/function.number-format.php