ব্রেকিং
বিজয় ⇄ ইউনিকোড কনভার্টার
বাংলা বিজয় ও ইউনিকোড কনভার্টার
function copyText(){
let text=document.getElementById("output");
text.select();
document.execCommand("copy");
alert("কপি হয়েছে");
}
function clearText(){
document.getElementById("input").value="";
document.getElementById("output").value="";
}
function swapText(){
let a=document.getElementById("input").value;
let b=document.getElementById("output").value;
document.getElementById("input").value=b;
document.getElementById("output").value=a;
}