Escape HTML Golang

unescaped := `<script>alert(123);</script>`
escaped := html.EscapeString(unescaped)
VasteMonde