Q
What is the correct syntax for including a Unicode character in a JavaScript string?

Answer & Solution

Answer: Option B
Solution:
To include a Unicode character, use the escape sequence \uXXXX.
Related Questions on Average

What will be the output of console.log('Hello\\nWorld');?

A). Hello World

B). Hello\nWorld

C). Hello

D). Hello

How do you escape a double quote character within a double-quoted string?

A). \'

B). \\'

C). \\'

D). \\'

How can you include a backslash in a JavaScript string?

A). \\\

B). \\

C). \\

D). \\\\

Which escape sequence is used for a backspace character?

A). \b

B). \back

C). \backspace

D). \bs

How do you include a newline character in a JavaScript string?

A). \n

B). \newline

C). \r

D). \newl

What is the effect of using \r in a string?

A). Inserts a space

B). Moves to the beginning of the line

C). Inserts a newline

D). Inserts a tab

How do you include a null character in a JavaScript string?

A). \0

B). \null

C). \none

D). \zero

Which escape sequence represents a single character Unicode escape?

A). \uXXXX

B). \u{XXXX}

C). \uxxxx

D). \unicodeXXXX

What is the correct way to include double quotes in a string?

A). \'

B). \q

C). \'

D). \quotes

How do you include a hexadecimal escape sequence in JavaScript?

A). \xXX

B). \hXX

C). \hexXX

D). \hdecXX