ツール

画像変換

ドット絵変換ツール

変換する 色数 ドットサイズ 選択した色 document.getElementById('dotForm').addEventListener('submit', function (event) { event.preventDefau...
文字コード変換

Unicode変換ツール

変換 元のテキスト Unicodeエスケープシーケンス document.getElementById('convertButton').addEventListener('click', function() { const inputT...
暗号変換

モールス変換ツール

変換 元のテキスト モールス信号 const morseCodeMap = { 'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.', 'G': '--...
数学変換

座標変換ツール

緯度 (度): 経度 (度): 計算する タイプ X座標 Y座標 document.getElementById("calculateButton").addEventListener("click", function() { const...
文字コード変換

ユニコード変換ツール

変換 入力テキスト ユニコード形式 function convertToUnicode() { const inputText = document.getElementById("inputText").value; const unic...
文字変換

ヒエログリフ変換ツール

変換したいテキストを入力してください: 変換する 入力テキスト ヒエログリフ document.getElementById('convert-button').addEventListener('click', function() { ...
文字変換

予測変換リセット計算ツール

計算 入力内容 処理結果 備考 document.getElementById('resetForm').addEventListener('submit', function(event) { event.preventDefault()...
文字変換

半角カタカナ変換ツール

変換 元のテキスト 変換後のテキスト function convertKana() { const inputText = document.getElementById("inputText").value; if (!inputText...
文字生成

アナグラム生成ツール

生成する アナグラム function generatePermutations(str) { if (str.length < 2) return ; const permutations = []; for (let i = 0; i ...
書体変換

ゴシック体変換ツール

変換する 元のテキスト ゴシック体テキスト function convertToGothic() { const inputText = document.getElementById('inputText').value; const e...