¿Es posible mostrar los emojis de teclas a través de js?
Por ejemplo
var a = String.fromCodePoint(0x1F354)+' this is a test';
o
var b =String.fromCodePoint(0x1F170) +' this is a test';
pero no
var c = String.fromCodePoint(0x20E3)+' this is a test';
Yo estaba esperando
Gracias de antemano.