(Ad, please don’t block.)

Quizzes » Unicode

1. How many bits do Unicode code points (roughly: characters) have?

2. Counting code points and code units

const result = 'ab😀'.length;

What is the result?

3. Counting code points and code units

const result = [...'ab😀'].length;

What is the result?


Correct answers: 0 out of 0