Unicode Emoji List on Unicode.org - lists all standardized emoji characters. Using Unicode characters in HTML is straightforward. You can use either the hexadecimal (base 16) or decimal (base 10) representation of the Unicode characterβs code point. Hereβs how you can do it: Different programming languages have different ways to input Unicode characters. For Example, the code point for the π emoji is U+1F60A
- in Python, you can use the syntax "\u1F60A" for Unicode characters.
- in HTML, you would write use the &#x) for hexadecimal (π) or &# for decimal (π)