What is the correct escape character for a page break in Windows for PHP?

In PHP, the correct escape character for a page break in Windows is "\f". This escape character represents a form feed character, which is used to advance the paper to the next page when printed. Here is a PHP code snippet that demonstrates how to use the "\f" escape character to create a page break in Windows:

<?php
echo "Page 1 content";
echo "\f"; // Page break
echo "Page 2 content";
?>