#!/bin/bash

c=`locale -c charmap`
if [ "${c: -5:${#c}}" != "UTF-8" ];
then
  echo "no";
else
  echo "yes";
fi