views:

19

answers:

2

i got this pattern for searching purpose for mysql from third party javascript. im assuming its html pattern, which can be converted, anyone have any idea on this?

pattern A%5B%D9%8B-%D9%93%D9%B0%5D*L%5B%D9%8B-%D9%93%D9%B0%5D*L%5B%D9%8B-%D9%93%D9%B0%5D*
A: 

It looks like a query string - where values are encoded.

See http://www.blooberry.com/indexdot/html/tagpages/text.htm for more information.

Todd Moses
A: 

It looks urlencoded and has some unicode charecters in it.

A[ً-ٰٓ]*L[ً-ٰٓ]*L[ً-ٰٓ]*

Byron Whitlock
<?php echo urldecode($string) ?>
Basit