I use Dreamweaver CS 6.
I use MS SQL Server as backend and I use nvarchar for my string data type which should support unicode.
do you mean any text in the HTML code I need cfprogressingdirective to support UTF-8?
How about the code in javascript?
Do I need any special function or format to support unicode?
Thanks again for helping,
Regards,
Iccsi,
This link might be helpful for explaining how to set file encoding in Dreamweaver:
http://helpx.adobe.com/dreamweaver/using/creating-opening-documents.html#set_default_document_type_and_encoding
If you had some CFML like:
<cfset name = "双喜">
You'd want that file to have the cfprocessingdirective at the top of the file. If that file was itself perhaps cfincluded from another file, both files would need the cfprocessingdirective.
If however it was coming direct from the DB, it wouldn't matter. However if you were outputting it into some Javascript or HTML, that file would need to be rendered using UTF-8 encoding. Which might also need to be done at the webserver.