here this is my PDO Class
class Database{
    public $isConn;
    protected $datab;
//connect to db
public function __construct($username = "root" , $password = "" , $host = "localhost" , $dbname = "job" , $options =[ ]){
    $this->isConn = TRUE;
    try{
        $this->datab = new PDO("mysql:host={$host};dbname={$dbname};charset=utf8",$username , $password ,$options);
        $this->datab->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
        $this->datab->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
    } catch ( PDOException $e ){
        throw new Exception($e->getMessage());
    }`enter code here`
}
Anybody please help , my database values are Japanese then i want to output Japanese word. how i change this code for this ?
