What does it mean to save a script in UTF-8 without BOM?

Saving a script in UTF-8 without BOM means that the file is encoded in UTF-8 without the Byte Order Mark (BOM) at the beginning of the file. This is important because including the BOM can cause issues with some servers or scripts that do not expect it. To save a script in UTF-8 without BOM, you can usually do this through the settings of your code editor.

// Ensure the script is saved in UTF-8 without BOM
// This can be done through the settings of your code editor
// Make sure to remove any BOM characters if present