get wordpress page link by id

// Step 1: Get the page ID (replace 123 with the actual ID)
$page_id = 123;

// Step 2: Use the get_permalink function to retrieve the page link
$page_link = get_permalink($page_id);

// Step 3: Display or use the page link as needed
echo $page_link;