<html>

<button id="myDIV" onclick="myFunction()">🀍</button>


<script>

function myFunction() {

var x = document.getElementById("myDIV");

if (x.innerHTML === "🀍") {

x.innerHTML = "❀️";

} else {

x.innerHTML = "🀍";

}

}

</script>

<style>

button {

border: none;

background: center;

height: 0px;

width: 0px;

background: none;

}

</style>

</html>