<?php

error_reporting(-1);
mb_internal_encoding('utf-8');

for ($i=32;$i<127;$i++) {
	echo chr($i)," ";
}

?>