If you found this string in a *.html file, then this is the result of manually making the URL unusable by any standard URL-processing. This is not a proper URL. This not the result of any standard escaping.
On the other hand: If you found this string inside some source code (NOT Java, though), then the \/ might be replaced at compile time into plain / as the following example in C shows:
#include <stdlib.h>
#include <stdio.h>
void main(){
char *cp = "http:\/\/a6.sphotos.ak.fbcdn.net\/hphotos-ak-snc7\/s2048x2048\/582167_359167994154900_1489271360_n.jpg";
printf("%s\n", cp);
}
The output is:
http://a6.sphotos.ak.fbcdn.net/hphotos-ak-snc7/s2048x2048/582167_359167994154900_1489271360_n.jpg
In Java the compiler will complain about "invalid escape sequence" and not even compile.