文字変換

文字変換

全角半角変換ツール

変換したいテキストを入力してください: 変換する 入力テキスト 全角テキスト 半角テキスト function convertText() { const inputText = document.getElementById('inputT...
文字変換

ギャル語変換ツール

変換したいテキストを入力してください: 変換 元のテキスト ギャル文字変換結果 document.getElementById('conversionForm').addEventListener('submit', function (e...
文字変換

漢字変換ツール

変換 入力 変換後の漢字 説明 document.getElementById('kanjiForm').addEventListener('submit', function(event) { event.preventDefault()...
文字変換

ヘボン式変換ツール

ひらがなまたはカタカナを入力してください: 変換する 変換結果: 入力 ヘボン式ローマ字 function convertToHepburn() { const inputText = document.getElementById('in...
文字変換

中国語名前変換ツール

お名前を入力してください: 漢字 ピンイン document.getElementById('nameForm').addEventListener('submit', function(e) { e.preventDefault(); c...
文字変換

カタカナ変換ツール

変換ツール 変換する 入力テキスト カタカナ変換 function convertText() { const input = document.getElementById('inputText').value.trim(); if (!...
文字変換

敬語変換ツール

敬語に変換 オリジナル文 敬語表現 document.getElementById("keigoForm").addEventListener("submit", function(event) { event.preventDefault...
文字変換

簡体字変換ツール

変換 入力テキスト 簡体字 繁体字 document.getElementById('conversionForm').addEventListener('submit', function (event) { event.preventD...