⪼ Made with 💜 by Polyglot.
- Codepoint
- Unicode Sharing Symbols (ChatGPT)
- Software Engineering :: Programming :: Languages :: JavaScript :: Unicode
- Software Engineering :: Programming :: Languages :: Python :: About :: This misses the point of why Python 3 was invented: Unicode
Unicode is a specification for how to encode characters. Unicode has a thing called unicode codepoints. Codepoints are numbers that are associated with a certain character. For example, there is a unicode codepoint for
e
or a:
.
This is similar to how ASCII works.
What is different with unicode is that there are a lot of characters in unicode. Basically, any character you can think of, it exists in unicode and there is a unique number associated with it.
- ÜniqodeNFT
- SYMBL
- Glyph
- Open Arrow
- Income Sources :: Web3 :: ₩onLogo.svg
- Imagemagick
- How to write mathematics on Medium
- Input Unicode mathematical symbols by LaTeX
- Big-Oh For Algorithms
- The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)
- What Every Programmer Absolutely, Positively Needs To Know About Encodings (2011) (kunststube.net)
- Unicode Blocks
- Unicode Characters and Blocks
- Characters, Symbols and the Unicode Miracle - Computerphile
- How UTF-8 Works (sethmlarson.dev)
- How does UTF-8 turn “😂” into “F09F9882”?
- Full Emoji Modifier Sequences, v14.0
- Ken Thompson
- Rob Pike
- Dennis Ritchie
- Are unicode characters allowed in most passwords? If not, why shouldn't they be?
- Sponsors of Adopted Characters
- Adoption Sponsors Stories
- Mojibake
- mojibake.app
- Preparation, Enforcement, and Comparison of Internationalized Strings Representing Usernames and Passwords
- Unicode Character Table
- List of Unicode Characters of Category “Lowercase Letter”
- Unicode 13.0 Character Code Charts
- Unicode Block “Latin Extended-A”
- Unicode Block “Phonetic Extensions”
- Wumbo Unicode Table
- Rocket Emoji 🚀 (U+1F680)
- Unicode Character “⩭” (U+2A6D)
- Unicode Character “ȡ” (U+0221)
- Unicode Character “⪼” (U+2ABC)
- Unicode Character “⪻” (U+2ABB)
- Unicode Character “µ” (U+00B5)
- Unicode Character “Ⓦ” (U+24CC)
- Unicode Character “𝕎” (U+1D54E)
- Unicode Character “🅆” (U+1F146)
- Unicode Character “Ẅ” (U+1E84)
- Unicode Character “Ẉ” (U+1E88)
- Unicode Character “𝒮” (U+1D4AE)
- 𝒮 Mathematical Script Capital S ::
1D4AE
- Unicode Character “₿” (U+20BF)
- ₩ Won Sign
- ₩ Fullwidth Won Sign
- ₫ Dong Sign
- Đ Latin Capital Letter D with Stroke
- đ Latin Small Letter D with Stroke
- ɗ Latin Small Letter D with Hook
- Ȧ Latin Capital Letter a with Dot Above (U+0226)
- æ Latin Small Letter Ae (U+00E6)
- ⍑ Apl Functional Symbol Up Tack Overbar down tack overbar
- ⋒ Double Intersection
- ᄊ Halfwidth Hangul Letter Ssangsios
- 阶 Ideograph stairs, steps; rank, degree CJK
const rows = [
createData('Dollar Sign', '$', 'U+0024', '$', '$', 'Currency Symbols'),
createData('Bitcoin Sign', '₿', 'U+20BF', '', '₿', 'Currency Symbols'),
createData('Won Sign', '₩', 'U+20A9', '', '₩', 'Currency Symbols'),
createData('₩ Fullwidth Won Sign', '₩', 'U+FFE6', '', '₩', 'Currency Symbols'),
createData('Yen Sign', '¥', 'U+00A5', '¥', '¥', 'Latin-1 Supplement'),
createData('Currency Sign', '¤', 'U+00A4', '¤', '¤', 'Latin-1 Supplement'),
createData('Pound Sign', '£', 'U+00A3', '£', '£', 'Latin-1 Supplement'),
createData('Cent Sign', '¢', 'U+00A2', '¢', '¢', 'Latin-1 Supplement'),
createData('Script Capital H', 'ℋ', 'U+210B', 'ℋ', 'ℋ', 'Letterlike Symbols'),
createData('Black-Letter Capital I', 'ℑ', 'U+2111', 'ℑ', 'ℑ', 'Letterlike Symbols'),
createData('Numero Sign', '№', 'U+2116', '№', '№', 'Letterlike Symbols'),
createData('Script Capital P', '℘', 'U+2118', '℘', '℘', 'Letterlike Symbols'),
createData('Inverted Ohm Sign', '℧', 'U+2127', '℧', '℧', 'Letterlike Symbols'),
createData('Black-Letter Capital Z', 'ℨ', 'U+2128', 'ℨ', 'ℨ', 'Letterlike Symbols'),
createData('Gimel Symbol', 'ℷ', 'U+2137', 'ℷ', 'ℷ', 'Letterlike Symbols'),
createData('Bet Symbol', 'ℶ', 'U+2136', 'ℶ', 'ℶ', 'Letterlike Symbols'),
createData('New Sheqel Sign', '₪', 'U+20AA', '', '₪', 'Currency Symbols'),
createData('Euro Sign', '€', 'U+20AC', '', '€', 'Currency Symbols'),
createData('Tenge Sign', '₸', 'U+20B8', '', '₸', 'Currency Symbols'),
createData('French Franc Sign', '₣', 'U+20A3', '', '₣', 'Currency Symbols'),
];