How to make url variable?

Assuming the user’s mobile number is saved in wp_usermeta with meta_key being mobile_number, then adding this to a template will show the current user’s mobile number:

<?php echo get_user_meta( get_current_user_id(), 'mobile_number', true ); ?>