UAをバイナリに変換するJavaScript
以下のテキストを拡張子.htmlで保存してWebブラウザで開いてね

<!DOCTYPE html>
<body>
<input id=txt type=textbox oninput=convert() size=100 value="Monazilla/1.00 JaneStyle/4.23 Windows/"><br>
<span id=len></span><br>
<span id=bin></span><br>
<script>
function convert(){
document.getElementById("len").innerText =
document.getElementById("txt").value.length.toString(16).toUpperCase();
document.getElementById("bin").innerText =
Array.prototype.map.call(document.getElementById("txt").value, c => c.charCodeAt().toString(16).toUpperCase()).join("");
}
convert();
</script>
</body>