phuocng / 1loc

What's your favorite JavaScript single LOC (line of code)?

Home Page:https://phuoc.ng/collection/1-loc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Convert letter to emoji

phuocng opened this issue Β· comments

'a' to 'πŸ‡¦', 'b' to 'πŸ‡§', etc.

c => String.fromCodePoint(c.toLowerCase().charCodeAt() + 127365);