Snippets tagged “escape-sequences”
2 snippets use this tag.
- How to decode Unicode escape sequences like "\u00ed" to proper UTF-8 encoded characters?PHP
In PHP, you can use the utf8_decode() function to decode a string that contains Unicode escape sequences.
- Java - What does "\n" mean?Java
In Java, the string "\n" is a newline character.