Forum Moderators: open
I have a Chinese introductory page to one of my sites that is gb2312-encoded. I'd like to change this to Unicode. (I'm going to save the old file, in case I decide to switch back.)
For Roman alphabet pages, I know that iso-8859-1 is a subset of utf-8, so to change from iso-8859-1 to utf-8 I just have to replace:
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
with:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
and I'm done. Can I do the same for gb2312? Just replace:
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
with:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
and I'm done? (gb2312 being a subset of utf-8?)