Unicode Converter

Convert text to Unicode code points and vice versa.

Common Unicode Ranges

U+0000-007F

Basic Latin (ASCII)

U+0080-00FF

Latin Supplement

U+0400-04FF

Cyrillic

U+4E00-9FFF

CJK Unified

U+1F600-1F64F

Emoticons

U+1F300-1F5FF

Misc 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.

Related Tools