Jump to content
02/12/2011
Instead of using that hideous conversion website, here’s a little javascript snippet that will convert a character to its unicode hex equivalent
“✌”.charCodeAt(0).toString(16); // “270c”
Vote down?
02/12/2011
Instead of using that hideous conversion website, here’s a little javascript snippet that will convert a character to its unicode hex equivalent