In the Elixir documentation it says that you can use the following escapes:
\xNN
- A byte represented by the hexadecimalNN
\uNNNN
- A Unicode code point represented byNNNN
So what if I want to escape a codepoint that's longer than 4 hex digits, i.e. is outside the Basic Multilingual Plane, like U+1f692 FIRE ENGINE
or all the Private Use characters?