高橋美香

数学変換

線形変換計算ツール

行列 (例: ,]) ベクトル (例: ) 計算する 変換後のベクトル document.getElementById('linearTransformationForm').addEventListener('submit', funct...
数学変換

極座標変換計算ツール

X座標 (x): Y座標 (y): 変換する 説明 値 極座標 (r) 角度 (θ, ラジアン) 角度 (θ, 度) function convertToPolar() { const x = parseFloat(document.get...
書体変換

手書きフォント変換ツール

オリジナルテキスト 手書き風テキスト function convertFont() { const inputText = document.getElementById("inputText").value; // 簡単なデータ確認 if...
文字変換

半角カタカナ変換ツール

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

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

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

ローマ字名前変換ツール

お名前を入力してください(ひらがな・カタカナ): 変換する 入力名 ローマ字表記 備考 document.getElementById('romajiForm').addEventListener('submit', function(ev...
文字変換

ヒエログリフ変換ツール

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

ハングル変換名前ツール

元の名前 ハングル表記 document.getElementById('nameForm').addEventListener('submit', function(event) { event.preventDefault(); con...
文字変換

ギャル文字変換ツール

変換したいテキストを入力してください: 変換する 変換結果 元のテキスト ギャル文字 function convertText() { const inputText = document.getElementById("inputText...
色変換

カラーコード変換ツール

変換 形式 値 HEX RGB RGBA HSV HSL document.getElementById('colorConversionForm').addEventListener('submit', function(event) {...