This shows which characters are allowed as a tag name with the document.createElement API.
try{
document.createElement(String.fromCodePoint($[i]));
log($[i])
} catch{}try{
document.createElement(String.fromCodePoint(58));
alert(58)
} catch{}try{
document.createElement(String.fromCodePoint(95));
alert(95)
} catch{}