What are the recommended tools or editors for saving PHP files with UTF-8 without BOM encoding?

When saving PHP files with UTF-8 encoding, it's important to avoid including the Byte Order Mark (BOM) at the beginning of the file. This can cause issues with PHP scripts, as the BOM can interfere with the correct interpretation of the file by the PHP interpreter. To save PHP files with UTF-8 encoding without the BOM, it's recommended to use text editors or tools that allow you to specify the encoding and ensure that the BOM is not included.

<?php
// PHP code without BOM
echo "Hello, World!";
?>