Skip to content

kheina-com/EmojiMap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

A json-formatted and machine-parsable map of emoji codes to data

extracted from the unicode page https://www.unicode.org/emoji/charts/full-emoji-list.html via

const emoji_map = { };
let code = null;
$x("//tr/td[@class!='rchars']").forEach(x => {
	switch (x.className) {
	case "code":
		code = x.innerText;
		emoji_map[code] = { };
		break;
	default:
		emoji_map[code][x.className] = x.innerText;
	}
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published