Fuzzying and encoding
HTML and Unicode Encoding
Symbol | Entity Name | Numeric | Unicode |
---|---|---|---|
" | " | " " | U+0022 |
' | ' | ' ' | U+0027 |
` | ` | ` ` | U+0060 |
/ | / | / / | U+002F |
\ | \ | \ \ | U+005C |
; | ; | ; ; | U+003B |
: | : | : : | U+003A |
, | , | , , | U+002C |
. | . | . . | U+002E |
( | ( | ( ( | U+0028 |
) | ) | ) ) | U+0029 |
[ | [ | [ [ | U+005B |
] | ] | ] ] | U+005D |
{ | { | { { | U+007B |
} | } | } } | U+007D |
< | < | < < | U+003C |
> | > | > > | U+003E |
* | * | * * | U+002A |
+ | + | + + | U+002B |
- | NA | - - | U+002D |
_ | _ | _ _ | U+005F |
& | & | & & | U+0026 |
| | | | | | | U+007C |
$ | $ | $ $ | U+0024 |
# | # | # # | U+0023 |
~ | ˜ | ~ ~ | U+007E |
\0 (NULL) | NA | � � | U+0000 |
\b (backspace) | NA |   | U+0008 |
\n (line feed) | NA | 
 | U+000A |
\t (horizontal tab) | NA | 	 	 | U+0009 |
\v (vertical tab) | NA |   | U+000B |
\f (form feed) | NA |   | U+000C |
\r (carriage return often used as \n \r) | NA | 
 | U+000D |
\e (escape) | NA |   | U+001B |
SPACE | NA |     | U+0020 |
Unicode format can be converted in URL encoding or CSS encoding as follows
Url encoding reserved characters
URL Encoded | ||
---|---|---|
# | %23 | Anchor point |
? | %3F | Arguments start point |
& | %24 | Argument separator |
% | %25 | Character encoding prefix |
/ | %2F | URL separator |
+ | %2B | Alternative symbol for space |
SPACE | %20 OR + |
Last updated