Unicode Characters

Escape characters also support Unicode characters using the \u prefix followed by the hexadecimal representation of the Unicode code point.

PHP




<?php
  
$str = "This is a smiley face: \u{1F604}";
echo $str;
  
?>


Output

This is a smiley face: ????

How to use Escape Characters in PHP ?

Escape characters in PHP are special characters that allow you to include non-printable characters, represent special characters, or format strings in a way that might be challenging with regular characters alone. They are preceded by a backslash \. In this article, we’ll explore how to use escape characters in PHP, covering various scenarios and providing detailed descriptions with examples.

Similar Reads

Method 1: Escaping Special Characters

Escape characters are often used to include special characters within strings without disrupting the code. For example, include a double quote within a double-quoted string....

Method 2: Newline and Tab Characters

...

Method 3: Backslash Itself

Escape characters are handy for introducing newlines (\n) and tabs (\t) within strings....

Method 4: Unicode Characters

...

Method 5: Variable Variables

If you need to include a backslash itself within a string, you can use \\....

Method 6: Single Quoted Strings

...