Unicode Converter
Convert text to Unicode code points and vice versa.
Common Unicode Ranges
U+0000-007FBasic Latin (ASCII)
U+0080-00FFLatin Supplement
U+0400-04FFCyrillic
U+4E00-9FFFCJK Unified
U+1F600-1F64FEmoticons
U+1F300-1F5FFMisc Symbols
Code Examples
// Character to code point
'😀'.codePointAt(0).toString(16); // "1f600"
// Code point to character
String.fromCodePoint(0x1f600); // "😀"Frequently Asked Questions
What is a Unicode code point?
A code point is the unique number assigned to each character in Unicode, written as U+XXXX in hexadecimal. For example, 'A' is U+0041, '😀' is U+1F600.