I have installed a Minecraft Bukkit Plugin which saves inventories of players using MySQL.
The table looks like this:

My problem is that I want to display the items on the website, but there are these "BLOB" formats. I think, they should be the block IDs (I only found methods to convert "BLOB" into img).
The "Blob's" have following format:

EDIT
When I try to display it on the website with this code:
$conn = new mysqli("$host", "$user", "$pass", "auction");
$sql = "SELECT content FROM inventory";
$result = $conn->query($sql);
while($row = $result->fetch_assoc()) {
echo base64_encode($row["content"]);
}
The solution looks like the following string:
H4sIAAAAAAAAAIuuViqpLEhVslJy9vcNcAwOVqrVgQs5egaNckc2NxYAYPN3OyECAAA=