import java.nio.ByteBuffer;
import java.nio.CharBuffer;
public class main {
public static void main(String[] args) {
int myint = 5120013;
ByteBuffer b = ByteBuffer.allocate(4);
b.asIntBuffer().put(myint);
CharBuffer cb = b.asCharBuffer();
char[] result = new char[cb.limit()];
cb.get(result);
System.out.format("Char count: %d\n", result.length);
System.out.print("0x");
for(char c: result) {
System.out.format("%04x", (int) c);
}
System.out.println();
}
}
Char count: 2
0x004e200d
git init
# modify config
git remote add remote_name remote_url
git fetch remote_name
git checkout branch_name
git clone --config core.autocrlf=false remote_url
И можно ли с нескольких разных устройств юзать один кошелек?
Можно ли эти 12 слов использовать для входа в любую программу