// url === текущее местоположение
location.hash; // #first
location.hash.substring(1); // first
// Для переменной url (строки)
new URL(url).hash.substring(1);
url.match(/(?<=#).+$/)[0];
// Неправильно:
new URL("http://example.com/#first&utm_content=lorem");
// hash: "#first&utm_content=lorem", search: ""
// Правильно:
new URL("http://example.com/?utm_content=lorem#first");
// hash: "#first", search: "?utm_content=lorem",